diff options
-rw-r--r-- | routes.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,5 +71,5 @@ module.exports = function(app, passport, auth) { app.get('/project/:short/participants', auth.requiresLogin, system.projectParticipants); - app.post('/project/:short/participants', auth.requiresLogin, system.postProjectParticipants); + app.post('/project/:short/participants', auth.requiresLogin, users.postProjectParticipants); // goes to the usercontroller because participants are users }; |