forked from sagi/seepur
Sagi Dayan
d7c9359ef2
- DB migrations - Login/Register flows - Dockerfile - Layouts, Partials, Components - Sass - Bulma.io - sqlite
17 lines
374 B
JavaScript
17 lines
374 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);
|
|
console.log(bgIndex)
|
|
return view.render('landing', {bgIndex});
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = IndexController
|