Mercurial > pumpbridge
comparison app.js_to_pump.io-client-app_lib @ 12:f190abf340ef
fixed some problems with facebook (caused by developers.facebook.com) removed fql :D
author | Mathias Gebbe <mgebbe@intevation.de> |
---|---|
date | Thu, 12 Jun 2014 10:23:05 +0200 |
parents | b73191efc65b |
children |
comparison
equal
deleted
inserted
replaced
11:9d17cb5147ca | 12:f190abf340ef |
---|---|
204 | 204 |
205 app.get('/', auth.userAuth, auth.userOptional, routes.index); | 205 app.get('/', auth.userAuth, auth.userOptional, routes.index); |
206 app.get('/login', auth.userAuth, auth.noUser, routes.login); | 206 app.get('/login', auth.userAuth, auth.noUser, routes.login); |
207 app.post('/login', auth.userAuth, auth.noUser, routes.handleLogin); | 207 app.post('/login', auth.userAuth, auth.noUser, routes.handleLogin); |
208 app.post('/logout', auth.userAuth, auth.userRequired, routes.handleLogout); | 208 app.post('/logout', auth.userAuth, auth.userRequired, routes.handleLogout); |
209 app.get('/about', auth.userAuth, auth.userOptional, routes.about); | |
210 app.get('/authorized/:hostname', routes.authorized); | 209 app.get('/authorized/:hostname', routes.authorized); |
211 app.get('/.well-known/host-meta.json', routes.hostmeta); | 210 app.get('/.well-known/host-meta.json', routes.hostmeta); |
212 | 211 |
213 // Create a dialback client | 212 // Create a dialback client |
214 | 213 |