diff --git a/app.js b/app.js index 30bac5b758..5b02fc5da7 100755 --- a/app.js +++ b/app.js @@ -59,8 +59,6 @@ app.get('/account', passportConf.isAuthenticated, user.getAccount); app.post('/account/profile', passportConf.isAuthenticated, user.postAccountProfile); app.post('/account/settings', passportConf.isAuthenticated, user.postAccountSettings); -app.get('/partials/:name', home.partials); - app.get('/api', api.getApi); app.get('/api/foursquare', passportConf.isAuthenticated, passportConf.isAuthorized, api.getFoursquare); app.get('/api/tumblr', passportConf.isAuthenticated, passportConf.isAuthorized, api.getTumblr);