Merge remote-tracking branch 'upstream/staging' into staging

This commit is contained in:
terakilobyte
2015-05-01 07:52:50 -04:00
7 changed files with 62 additions and 20 deletions

10
app.js
View File

@@ -520,6 +520,16 @@ app.post(
storyController.upvote
);
app.get(
'/unsubscribe/:email',
resourcesController.unsubscribe
);
app.get(
'/unsubscribed',
resourcesController.unsubscribed
);
app.all('/account', passportConf.isAuthenticated);
app.get('/account/api', userController.getAccountAngular);