1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-23 01:21:32 +02:00
send/app/routes/home.js

11 lines
289 B
JavaScript
Raw Normal View History

const welcome = require('../templates/welcome');
const upload = require('../templates/upload');
module.exports = function(state, emit) {
if (state.transfer && state.transfer.iv) {
//TODO relying on 'iv' is gross
return upload(state, emit);
}
return welcome(state, emit);
};