aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/routes.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes.js')
-rw-r--r--routes.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/routes.js b/routes.js
index 81d9da1..071d3d0 100644
--- a/routes.js
+++ b/routes.js
@@ -32,7 +32,6 @@ module.exports = function(app, passport, auth) {
app.post('/signup', users.create);
-
app.post('/test', users.signin);
app.get('/auth/facebook', passport.authenticate('facebook', { failureRedirect: '/test' }), users.signin);
@@ -41,6 +40,10 @@ module.exports = function(app, passport, auth) {
app.get('/auth/twitter', passport.authenticate('twitter', { failureRedirect: '/test' }), users.signin);
app.get('/auth/twitter/callback', passport.authenticate('twitter', { failureRedirect: '/test' }), users.authCallback);
+ app.get('/invite/:randomToken', users.claimInvite);
+
+ app.post('/invite/:randomToken', users.postClaimInvite);
+
app.get('/logout', users.logout);