diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-12-15 10:44:47 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-12-15 10:44:47 +0100 |
| commit | 8ba7dd3596772238ff1f238e7a94af78e3fe3b29 (patch) | |
| tree | d41398165ba80fca141331619a2ffb3459684d18 /bucky | |
| parent | a239f46aaf924031ea53a95130215a2dd3f4dbd6 (diff) | |
| parent | 37fd2b5287ced2b2beb72d9659addaa58ae2521b (diff) | |
merge
Diffstat (limited to 'bucky')
| -rw-r--r-- | bucky/app/api.js | 8 | ||||
| -rw-r--r-- | bucky/app/index.js | 10 |
2 files changed, 4 insertions, 14 deletions
diff --git a/bucky/app/api.js b/bucky/app/api.js index b3540ae..5635ce9 100644 --- a/bucky/app/api.js +++ b/bucky/app/api.js @@ -45,21 +45,13 @@ function route (app){ app.get("/api/index", bucky.ensureLastlog, middleware.ensureAuthenticated, - (req,res,next) => {console.log('uthed'); next()}, bucky.ensureLatestThreads, - (req,res,next) => {console.log('lat'); next()}, bucky.filterPrivateThreads, - (req,res,next) => {console.log('priv'); next()}, bucky.ensureCommentCountsForThreads, - (req,res,next) => {console.log('com'); next()}, bucky.ensureFileCountsForThreads, - (req,res,next) => {console.log('fil'); next()}, bucky.ensureKeywordsForThreads, - (req,res,next) => {console.log('keyz'); next()}, bucky.ensureHootbox, - (req,res,next) => {console.log('hootz'); next()}, bucky.bumpLastSeen, - (req,res,next) => {console.log('done'); next()}, function(req, res){ res.json({ threads: res.threads, diff --git a/bucky/app/index.js b/bucky/app/index.js index ca8506a..24f1035 100644 --- a/bucky/app/index.js +++ b/bucky/app/index.js @@ -63,17 +63,16 @@ site.init = function(){ // })) app.disable('x-powered-by') + auth.init() app.use(express.query()) - app.use(passport.initialize()) - app.use(passport.session()) + app.use(passport.initialize()) + app.use(passport.session()) server = http.createServer(app).listen(process.env.PORT || 5000, function () { console.log('Bucky listening at http://' + process.env.HOST_NAME + ':%s', server.address().port) }) - auth.init() - - app.all('*', middleware.ensureLocals) + app.all('*', middleware.ensureLocals) api.route(app) pages.route(app) @@ -88,6 +87,5 @@ site.init = function(){ require('../bin/build-scripts') } } - site.api = require('./api') site.pages = require('./pages') |
