mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 03:29:37 +02:00
Db migration to support custom order of bookmarks. Created route to reorder bookmarks. Added more sorting options to bookmark controllers. Simplified ordering in getAllApps controller
This commit is contained in:
parent
dfdd49cf4a
commit
f1f7b698f8
10 changed files with 95 additions and 35 deletions
|
@ -10,6 +10,7 @@ const {
|
|||
getSingleBookmark,
|
||||
updateBookmark,
|
||||
deleteBookmark,
|
||||
reorderBookmarks,
|
||||
} = require('../controllers/bookmarks');
|
||||
|
||||
router
|
||||
|
@ -23,4 +24,6 @@ router
|
|||
.put(auth, requireAuth, upload, updateBookmark)
|
||||
.delete(auth, requireAuth, deleteBookmark);
|
||||
|
||||
router.route('/0/reorder').put(auth, requireAuth, reorderBookmarks);
|
||||
|
||||
module.exports = router;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue