24 lines
636 B
JavaScript
24 lines
636 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
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'}`,
|
|
});
|