feat: migrate from paths constant to new route management system

This commit is contained in:
Sonny
2024-05-16 18:53:53 +02:00
committed by Sonny
parent 905f0ba1c7
commit 57ed2c5e94
20 changed files with 82 additions and 75 deletions

View File

@@ -25,6 +25,8 @@ router
router
.put('/:id', [CollectionsController, 'update'])
.as('collection.edit');
router.get('/delete', () => 'delete').as('collection.delete-form');
})
.prefix('/collections');
})