1
0
mirror of https://github.com/franjsco/tick3t-api synced 2025-06-05 22:09:20 +02:00

remove route: ticketAdmin

This commit is contained in:
Francesco Esposito 2019-08-06 18:46:33 +02:00
parent 29cace7304
commit 8c2beec2be

View File

@ -1,10 +0,0 @@
const express = require('express');
const router = express.Router();
const ticketController = require('../controllers/ticketAdmin');
router.get('/', ticketController.getAll);
router.put('/:ticketId', ticketController.updateById);
router.delete('/:ticketId', ticketController.deleteById);
module.exports = router;