Skip to content

Commit 3fc3245

Browse files
committed
addressing bryant's changes to use proper import/module loading syntax
1 parent 852c3db commit 3fc3245

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/routers/projects.router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { ProjectController } = require('../controllers');
99
// router.use(Auth.authUser, Auth.requireMinimumRole(ROLES.PROJECT_MANAGER));
1010
// The base is /api/projects
1111

12-
import { AuthUtil } from '../middleware/auth.middleware';
12+
const { AuthUtil } = require('../middleware/auth.middleware');
1313

1414
router.get('/', ProjectController.project_list);
1515

0 commit comments

Comments
 (0)