aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/routes.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes.js')
-rw-r--r--routes.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/routes.js b/routes.js
index ae94779..0b6bd65 100644
--- a/routes.js
+++ b/routes.js
@@ -57,5 +57,9 @@ module.exports = function(app, passport, auth) {
app.get('/project/new', auth.requiresLogin, system.newProject);
- app.post('/project/new', auth.requiresLogin, system.postNewProject)
+ app.post('/project/new', auth.requiresLogin, system.postNewProject);
+
+ app.get('/project/:short', auth.requiresLogin, system.project);
+
+ app.get('/project/:short/participants', auth.requiresLogin, system.projectParticipants);
};