mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02:00
19 lines
558 B
JavaScript
19 lines
558 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
import { computed } from '@ember/object';
|
|
import apiPath from 'vault/utils/api-path';
|
|
import attachCapabilities from 'vault/lib/attach-capabilities';
|
|
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
|
|
const ModelExport = Model.extend({
|
|
name: attr('string'),
|
|
backend: attr({ readOnly: true }),
|
|
attrs: computed(function () {
|
|
return expandAttributeMeta(this, ['name']);
|
|
}),
|
|
});
|
|
|
|
export default attachCapabilities(ModelExport, {
|
|
updatePath: apiPath`${'backend'}/scope/${'id'}`,
|
|
});
|