You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CoreID/app/controllers/auth/Password.controller.js

18 lines
393 B

4 years ago
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