- updated styles
- added edit functionality
This commit is contained in:
Luke Vella 2015-01-12 12:09:00 +01:00
parent 2630cc237a
commit b72dfc474e
21 changed files with 136 additions and 52 deletions

View file

@ -7,5 +7,6 @@ var debug = require('debug')('api/event/index');
router.post('/', controller.create);
router.get('/:id', controller.show);
router.post('/:id/participant', controller.createParticipant);
router.put('/:id', controller.update);
router.delete('/:id/participant/:pid', controller.deleteParticipant);
module.exports = router;