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,22 @@
const { Service } = require('flitter-di')
const fs = require('fs').promises
class SamlService extends Service {
static get services() {
return [...super.services, 'configs']
}
config() {
return this.configs.get('saml')
}
async private_key() {
return String(await fs.readFile(this.configs.get('saml.cert_file.private')))
}
async public_cert() {
return String(await fs.readFile(this.configs.get('saml.cert_file.public')))
}
}
module.exports = exports = SamlService