stubbed /login page for redirect base login flow

This commit is contained in:
Danny Coates 2019-07-23 09:27:34 -07:00
parent 76695aee5d
commit 58191975b9
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@ module.exports = function(app = choo()) {
app.route('/oauth', function(state, emit) {
emit('authenticate', state.query.code, state.query.state);
});
app.route('/login', body(require('./ui/home')));
app.route('*', body(require('./ui/notFound')));
return app;
};