flame/routes/bookmark.js

23 lines
390 B
JavaScript
Raw Normal View History

2021-05-23 18:18:04 +03:00
const express = require('express');
const router = express.Router();
const {
createBookmark,
getBookmarks,
getBookmark,
updateBookmark,
deleteBookmark
} = require('../controllers/bookmark');
router
.route('/')
.post(createBookmark)
.get(getBookmarks);
router
.route('/:id')
.get(getBookmark)
.put(updateBookmark)
.delete(deleteBookmark);
module.exports = router;