33 lines
885 B
JavaScript
33 lines
885 B
JavaScript
const Controller = require('libflitter/controller/Controller')
|
|
|
|
/*
|
|
* Home Controller
|
|
* -------------------------------------------------------------
|
|
* Controller for the main homepage of this Flitter app. Methods here
|
|
* are used as handlers for routes specified in the route files.
|
|
*/
|
|
class Home extends Controller {
|
|
static get services(){
|
|
return [...super.services, 'configs']
|
|
}
|
|
|
|
/*
|
|
* Serve the main welcome page.
|
|
*/
|
|
welcome(req, res){
|
|
|
|
/*
|
|
* Return the welcome view.
|
|
* The page() method is added by Flitter and passes some
|
|
* helpful contextual data to the view as well.
|
|
*/
|
|
return res.page('welcome', {user: req.user})
|
|
}
|
|
async get_login(req, res){
|
|
const app_name = this.configs.get('app.name')
|
|
return res.page('login', {app_name})
|
|
}
|
|
}
|
|
|
|
module.exports = Home
|