SAML; Dashboard
This commit is contained in:
15
app/models/saml/ServiceProvider.model.js
Normal file
15
app/models/saml/ServiceProvider.model.js
Normal file
@@ -0,0 +1,15 @@
|
||||
const { Model } = require('flitter-orm')
|
||||
|
||||
class ServiceProviderModel extends Model {
|
||||
static get schema() {
|
||||
return {
|
||||
name: String,
|
||||
entity_id: String,
|
||||
acs_url: String,
|
||||
active: { type: Boolean, default: true },
|
||||
slo_url: String,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = exports = ServiceProviderModel
|
||||
Reference in New Issue
Block a user