Add App setup wizard

This commit is contained in:
garrettmills
2020-05-21 22:56:48 -05:00
parent ca11e3afae
commit b275391674
13 changed files with 475 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
const { Controller } = require('libflitter')
class MiscController extends Controller {
static get services() {
return [...super.services, 'Vue']
}
get_app_setup(req, res, next) {
return res.page('dash:app_setup', {
...this.Vue.session(req),
...this.Vue.data()
})
}
}
module.exports = exports = MiscController