seepur/app/Controllers/Http/IndexController.js
2020-02-15 13:07:23 -05:00

16 lines
309 B
JavaScript

'use strict'
class IndexController {
async index({auth, view}) {
try {
await auth.check();
return view.render('home');
} catch (e) {
const bgIndex = Math.ceil((Math.random() * 10) % 5);
return view.render('landing', {bgIndex});
}
}
}
module.exports = IndexController