d509588cd2
Ember update - update ember-cli, ember-data, and ember to 3.4 series
19 lines
493 B
JavaScript
19 lines
493 B
JavaScript
import { computed } from '@ember/object';
|
|
import DS from 'ember-data';
|
|
|
|
import PolicyModel from '../policy';
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
|
|
let { attr } = DS;
|
|
|
|
export default PolicyModel.extend({
|
|
enforcementLevel: attr('string', {
|
|
possibleValues: ['advisory', 'soft-mandatory', 'hard-mandatory'],
|
|
defaultValue: 'hard-mandatory',
|
|
}),
|
|
|
|
additionalAttrs: computed(function() {
|
|
return expandAttributeMeta(this, ['enforcementLevel']);
|
|
}),
|
|
});
|