feat: create edit collection page

This commit is contained in:
Sonny
2024-05-14 23:57:54 +02:00
committed by Sonny
parent 6b327a5b1e
commit 6b4cfd9926
13 changed files with 180 additions and 38 deletions

View File

@@ -27,6 +27,9 @@ router
]);
router.post('/collections', [CollectionsController, 'store']);
router.get(PATHS.COLLECTION.EDIT, [CollectionsController, 'showEditPage']);
router.put('/collections/:id', [CollectionsController, 'update']);
router.get(PATHS.LINK.CREATE, [LinksController, 'showCreatePage']);
router.post('/links', [LinksController, 'store']);
})