CoreID/app/models/Application.model.js

32 lines
924 B
JavaScript
Raw Normal View History

const { Model } = require('flitter-orm')
class ApplicationModel extends Model {
static get schema() {
return {
name: String,
identifier: String,
description: String,
active: { type: Boolean, default: true },
saml_service_provider_ids: [String],
ldap_client_ids: [String],
oauth_client_ids: [String],
2020-08-13 06:56:33 +00:00
openid_client_ids: [String],
}
}
async to_api() {
return {
id: this.id,
name: this.name,
identifier: this.identifier,
description: this.description,
saml_service_provider_ids: this.saml_service_provider_ids,
ldap_client_ids: this.ldap_client_ids,
oauth_client_ids: this.oauth_client_ids,
2020-08-13 06:56:33 +00:00
openid_client_ids: this.openid_client_ids,
}
}
}
module.exports = exports = ApplicationModel