v1.0.0
This commit is contained in:
29
api/routes/stand.routes.js
Normal file
29
api/routes/stand.routes.js
Normal file
@@ -0,0 +1,29 @@
|
||||
const express = require('express');
|
||||
const router = express.Router();
|
||||
const StandController = require('../controllers/stand.controller');
|
||||
const authenticate = require("../middleware/auth");
|
||||
|
||||
router
|
||||
.route('/list')
|
||||
.get(authenticate, StandController.getList)
|
||||
.post(authenticate, StandController.createStand);
|
||||
|
||||
router
|
||||
.route('/:stand_id')
|
||||
.get(authenticate, StandController.getStand)
|
||||
.put(authenticate, StandController.updateStand)
|
||||
.delete(authenticate, StandController.deleteStand);
|
||||
|
||||
router
|
||||
.route('/schedule/list')
|
||||
.get(authenticate, StandController.getScheduleList)
|
||||
|
||||
router
|
||||
.route('/schedule/:stand_id')
|
||||
.post(authenticate, StandController.createSchedule)
|
||||
|
||||
router
|
||||
.route('/schedule/history/:stand_schedule_id')
|
||||
.post(authenticate, StandController.getScheduleHistory)
|
||||
|
||||
module.exports = router;
|
||||
Reference in New Issue
Block a user