Task #28 - Update variables to standard and created export controller

This commit is contained in:
2020-02-08 05:17:29 -06:00
parent 7f832c0d92
commit 68b20a5cf4
4 changed files with 6 additions and 5 deletions

View File

@@ -24,8 +24,8 @@ class Home extends Controller {
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})
const AppName = this.configs.get('app.name')
return res.page('login', {AppName})
}
}