open-vault/ui/app/models/auth-config/radius.js

30 lines
749 B
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
2018-04-03 14:16:57 +00:00
import DS from 'ember-data';
import AuthConfig from '../auth-config';
2019-02-14 18:52:34 +00:00
import { combineFieldGroups } from 'vault/utils/openapi-to-attrs';
2018-04-03 14:16:57 +00:00
import fieldToAttrs from 'vault/utils/field-to-attrs';
const { attr } = DS;
export default AuthConfig.extend({
2019-02-14 18:52:34 +00:00
useOpenAPI: true,
2018-04-03 14:16:57 +00:00
host: attr('string'),
secret: attr('string'),
fieldGroups: computed(function() {
2019-02-14 18:52:34 +00:00
let groups = [
2018-04-03 14:16:57 +00:00
{
default: ['host', 'secret'],
},
{
'RADIUS Options': ['port', 'nasPort', 'nasIdentifier', 'dialTimeout', 'unregisteredUserPolicies'],
2018-04-03 14:16:57 +00:00
},
];
2019-02-14 18:52:34 +00:00
if (this.newFields) {
groups = combineFieldGroups(groups, this.newFields, []);
}
2018-04-03 14:16:57 +00:00
return fieldToAttrs(this, groups);
}),
});