mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-24 12:11:11 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
26 lines
695 B
JavaScript
26 lines
695 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
import { alias } from '@ember/object/computed';
|
|
import { computed } from '@ember/object';
|
|
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
|
|
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
|
|
export default Model.extend({
|
|
fields: computed(function () {
|
|
return expandAttributeMeta(this, ['maxTtl']);
|
|
}),
|
|
|
|
configurePath: lazyCapabilities(apiPath`sys/config/control-group`),
|
|
canDelete: alias('configurePath.canDelete'),
|
|
maxTtl: attr({
|
|
defaultValue: 0,
|
|
editType: 'ttl',
|
|
label: 'Maximum TTL',
|
|
}),
|
|
});
|