22 lines
588 B
JavaScript
22 lines
588 B
JavaScript
|
import Ember from 'ember';
|
||
|
import DS from 'ember-data';
|
||
|
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
|
||
|
|
||
|
const { attr } = DS;
|
||
|
const { computed } = Ember;
|
||
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
||
|
|
||
|
export default DS.Model.extend({
|
||
|
fields: computed(function() {
|
||
|
return expandAttributeMeta(this, ['maxTtl']);
|
||
|
}),
|
||
|
|
||
|
configurePath: lazyCapabilities(apiPath`sys/config/control-group`),
|
||
|
canDelete: computed.alias('configurePath.canDelete'),
|
||
|
maxTtl: attr({
|
||
|
defaultValue: 0,
|
||
|
editType: 'ttl',
|
||
|
label: 'Max TTL',
|
||
|
}),
|
||
|
});
|