We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b6a8dc commit c1ab80aCopy full SHA for c1ab80a
server/routes/collection.routes.ts
@@ -2,7 +2,7 @@ import { Router } from 'express';
2
import * as CollectionController from '../controllers/collection.controller';
3
import isAuthenticated from '../utils/isAuthenticated';
4
5
-const router = new Router();
+const router = Router();
6
7
// List collections
8
router.get(
@@ -41,4 +41,5 @@ router.delete(
41
CollectionController.removeProjectFromCollection
42
);
43
44
+// eslint-disable-next-line import/no-default-export
45
export default router;
0 commit comments