diff options
author | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-30 13:48:18 +0200 |
---|---|---|
committer | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-30 13:48:18 +0200 |
commit | 691b1eb84e1bcae1d97d49b96a25961b694fa9f4 (patch) | |
tree | 87a404094e8e3438577701050f0612a45a7ef1f8 /routes.js | |
parent | Merge branch 'master' of github.com:dennisse/Divid (diff) | |
download | Divid-691b1eb84e1bcae1d97d49b96a25961b694fa9f4.tar.gz |
added post-route for participants
Diffstat (limited to 'routes.js')
-rw-r--r-- | routes.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -62,4 +62,6 @@ module.exports = function(app, passport, auth) { app.get('/project/:short', auth.requiresLogin, system.project); app.get('/project/:short/participants', auth.requiresLogin, system.projectParticipants); + + app.post('/project/:short/participants', auth.requiresLogin, system.postProjectParticipants); }; |