remove route: ticketAdmin

This commit is contained in:
Francesco Esposito 2019-08-06 18:46:33 +02:00
parent 29cace7304
commit 8c2beec2be
1 changed files with 0 additions and 10 deletions

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;