SAML; Dashboard

This commit is contained in:
garrettmills
2020-05-03 20:16:54 -05:00
parent e3ecfb0d37
commit c389e151b5
1778 changed files with 148410 additions and 82 deletions

View File

@@ -0,0 +1,17 @@
const { Controller } = require('libflitter')
class PasswordController extends Controller {
static get services() {
return [...super.services, 'Vue']
}
async get_reset(req, res, next) {
return res.page('auth:password:reset', {
...this.Vue.data(),
...this.Vue.session(req),
})
}
}
module.exports = exports = PasswordController