open-vault/ui/app/models/control-group-config.js
Matthew Irish 9953eb76aa
UI - control groups (#4947)
* add routes for control groups in tools, settings, access (#4718)
* UI control group - storage, request, authorization, and unwrapping (#4899)
* UI control groups config (#4927)
2018-07-18 20:59:04 -05:00

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',
}),
});