Style tweak

This commit is contained in:
MICHAEL JACKSON 2017-11-14 17:00:00 -08:00
parent 36efac099f
commit 3f2192f7d4
1 changed files with 7 additions and 2 deletions

View File

@ -65,8 +65,13 @@ function createServer() {
app.get('/_publicKey', require('./actions/showPublicKey'))
app.post('/_auth', require('./actions/createAuth'))
app.get('/_auth', require('./actions/showAuth'))
app.use(
'/_auth',
createRouter(app => {
app.post('/', require('./actions/createAuth'))
app.get('/', require('./actions/showAuth'))
})
)
app.use(
'/_blacklist',