18 lines
515 B
JavaScript
18 lines
515 B
JavaScript
|
|
import express from 'express'
|
|
import { isAuthenticatedUser, authorizeRoles } from "../../middlewares/auth.js";
|
|
import { AddNewnIformation, FindAllInformation } from './InformationController.js';
|
|
|
|
const router = express.Router()
|
|
|
|
router.route("/new").post(isAuthenticatedUser, authorizeRoles("admin"), AddNewnIformation)
|
|
router.route("/getAll").get(isAuthenticatedUser, authorizeRoles("admin"), FindAllInformation)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// router.route("/product/getAll/").get(getAllProduct)
|
|
|
|
export default router |