aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/routes.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes.js')
-rw-r--r--routes.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/routes.js b/routes.js
index 0b6bd65..d597ae8 100644
--- a/routes.js
+++ b/routes.js
@@ -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);
};