Initial Flitter Commit

This commit is contained in:
garrettmills
2020-04-16 15:38:01 -05:00
parent 49911f1bed
commit dbdaf775df
41 changed files with 3873 additions and 613 deletions

View File

@@ -0,0 +1,25 @@
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 {
/*
* 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})
}
}
module.exports = Home