1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00

Backend: auth for bookmarks and categories

This commit is contained in:
Paweł Malak 2021-11-11 16:43:00 +01:00
parent 22471d64c7
commit 0d36c5cf94
6 changed files with 39 additions and 12 deletions

View file

@ -1,6 +1,9 @@
const express = require('express');
const router = express.Router();
// middleware
const { auth, requireAuth } = require('../middleware');
const {
createCategory,
getAllCategories,
@ -10,14 +13,17 @@ const {
reorderCategories,
} = require('../controllers/categories');
router.route('/').post(createCategory).get(getAllCategories);
router
.route('/')
.post(auth, requireAuth, createCategory)
.get(auth, getAllCategories);
router
.route('/:id')
.get(getSingleCategory)
.put(updateCategory)
.delete(deleteCategory);
.get(auth, getSingleCategory)
.put(auth, requireAuth, updateCategory)
.delete(auth, requireAuth, deleteCategory);
router.route('/0/reorder').put(reorderCategories);
router.route('/0/reorder').put(auth, requireAuth, reorderCategories);
module.exports = router;