24
1
Fork 0
drop.chapril.org-firefoxsend/app/routes.js

19 lines
710 B
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
const choo = require('choo');
const download = require('./ui/download');
const body = require('./ui/body');
2018-10-25 04:07:10 +02:00
module.exports = function(app = choo()) {
2018-10-30 19:37:33 +01:00
app.route('/', body(require('./ui/home')));
2018-10-25 04:07:10 +02:00
app.route('/download/:id', body(download));
app.route('/download/:id/:key', body(download));
app.route('/unsupported/:reason', body(require('./ui/unsupported')));
app.route('/legal', body(require('./ui/legal')));
app.route('/error', body(require('./ui/error')));
app.route('/blank', body(require('./ui/blank')));
app.route('/oauth', async function(state, emit) {
2019-02-12 20:50:06 +01:00
emit('authenticate', state.query.code, state.query.state);
2018-10-25 04:07:10 +02:00
});
app.route('*', body(require('./ui/notFound')));
return app;
};