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,16 @@
const { Service } = require('flitter-di')
class CobaltService extends Service {
static get services() {
return [...super.services, 'Vue']
}
listing(req, res, { title = '', columns, data }) {
return res.page('cobalt:listing', {
...this.Vue.data({ definition: { title, columns, data } }),
...this.Vue.session(req),
})
}
}
module.exports = exports = CobaltService