aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/routes.js
diff options
context:
space:
mode:
authorDennis Eriksen <dennis.se@gmail.com>2013-05-25 11:17:42 +0200
committerDennis Eriksen <dennis.se@gmail.com>2013-05-25 11:17:42 +0200
commite582c3b84c6090b08f33d599c354968fcd868d14 (patch)
treeb6de1b7b1f708bf9126ccb709d5129e91a67c7d5 /routes.js
parentchanged what gets collected (diff)
downloadDivid-e582c3b84c6090b08f33d599c354968fcd868d14.tar.gz
moved and renamed files to match the filesetup we want.
havebeen using a dev-setup till now.
Diffstat (limited to 'routes.js')
-rw-r--r--routes.js81
1 files changed, 0 insertions, 81 deletions
diff --git a/routes.js b/routes.js
deleted file mode 100644
index 1062f08..0000000
--- a/routes.js
+++ /dev/null
@@ -1,81 +0,0 @@
-
-/**
- * Dependencies
- */
-
-var users = require('./controllers/users')
- , system = require('./controllers/system');
-
-
-/*
- * ============================================================
- * Routes
- *
- */
-
-module.exports = function(app, passport, auth) {
- app.get('/', system.index);
-
- app.get('/test', system.test);
-
- app.get('/home', system.home);
-
- app.get('/faq', system.faq);
-
- app.get('/contact', system.contact);
-
- app.get('/login', users.login);
-
- app.post('/login', passport.authenticate('local', { failureRedirect: '/' }), users.signin);
-
- app.get('/signup', users.signup);
-
- app.post('/signup', users.create);
-
- app.post('/test', users.signin);
-
- app.get('/auth/facebook', passport.authenticate('facebook', { failureRedirect: '/' }), users.signin);
- app.get('/auth/facebook/callback', passport.authenticate('facebook', { failureRedirect: '/' }), users.authCallback);
-
- app.get('/auth/twitter', passport.authenticate('twitter', { failureRedirect: '/' }), users.signin);
- app.get('/auth/twitter/callback', passport.authenticate('twitter', { failureRedirect: '/' }), users.authCallback);
-
- app.get('/invite/:randomToken', users.claimInvite);
-
- app.post('/invite/:randomToken', users.postClaimInvite);
-
- app.get('/logout', users.logout);
-
- app.get('/login/:hash', passport.authenticate('hash', { failureRedirect: '/'}), users.randomLogin);
-
- /**
- * REQUIRES LOGIN
- * ============================================================
- */
-
-
- app.get('/dashboard', auth.requiresLogin, system.dashboard);
-
- app.get('/registerEmail', auth.requiresLogin, users.registerEmail);
-
- app.post('/registerEmail', auth.requiresLogin, users.postRegisterEmail);
-
- app.get('/project', auth.requiresLogin, system.project);
-
- app.get('/project/new', auth.requiresLogin, system.newProject);
-
- app.post('/project/new', auth.requiresLogin, system.postNewProject);
-
- app.get('/project/:short', auth.requiresLogin, system.project);
-
- app.get('/project/:short/post', auth.requiresLogin, system.projectPost);
-
- app.post('/project/:short/post', auth.requiresLogin, system.postProjectPost);
-
- app.get('/project/:short/participants', auth.requiresLogin, system.projectParticipants);
-
- app.post('/project/:short/participants', auth.requiresLogin, users.postProjectParticipants); // goes to the usercontroller because participants are users
-
- app.get('/project/:short/delete/:post', auth.requiresLogin, system.deleteProjectPost);
-
-};