mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-08 15:10:54 +03:00
a few changes to make A/B testing easier
This commit is contained in:
9
app/routes/home.js
Normal file
9
app/routes/home.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const welcome = require('../templates/welcome');
|
||||
const upload = require('../templates/upload');
|
||||
|
||||
module.exports = function(state, emit) {
|
||||
if (state.transfer) {
|
||||
return upload(state, emit);
|
||||
}
|
||||
return welcome(state, emit);
|
||||
};
|
||||
Reference in New Issue
Block a user