8338b9b0e3
Dynamically generate views from OpenAPI document to List/CRUD LDAP users and groups in the UI
31 lines
738 B
JavaScript
31 lines
738 B
JavaScript
import { computed } from '@ember/object';
|
|
import DS from 'ember-data';
|
|
import AuthConfig from '../auth-config';
|
|
import fieldToAttrs from 'vault/utils/field-to-attrs';
|
|
import { combineFieldGroups } from 'vault/utils/openapi-to-attrs';
|
|
|
|
const { attr } = DS;
|
|
|
|
export default AuthConfig.extend({
|
|
useOpenAPI: true,
|
|
organization: attr('string'),
|
|
baseUrl: attr('string', {
|
|
label: 'Base URL',
|
|
}),
|
|
|
|
fieldGroups: computed(function() {
|
|
let groups = [
|
|
{ default: ['organization'] },
|
|
{
|
|
'GitHub Options': ['baseUrl'],
|
|
},
|
|
{ TTLs: ['ttl', 'maxTtl'] },
|
|
];
|
|
if (this.newFields) {
|
|
groups = combineFieldGroups(groups, this.newFields, []);
|
|
}
|
|
|
|
return fieldToAttrs(this, groups);
|
|
}),
|
|
});
|