flame/routes/category.js
2021-05-22 19:04:34 +02:00

23 lines
392 B
JavaScript

const express = require('express');
const router = express.Router();
const {
createCategory,
getCategories,
getCategory,
updateCategory,
deleteCategory
} = require('../controllers/category');
router
.route('/')
.post(createCategory)
.get(getCategories);
router
.route('/:id')
.get(getCategory)
.put(updateCategory)
.delete(deleteCategory);
module.exports = router;