mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-27 05:31:40 +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>
25 lines
688 B
JavaScript
25 lines
688 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model from '@ember-data/model';
|
|
import { assert } from '@ember/debug';
|
|
import { computed } from '@ember/object';
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
|
|
export default Model.extend({
|
|
formFields: computed(function () {
|
|
return assert('formFields should be overridden', false);
|
|
}),
|
|
|
|
fields: computed('formFields', 'formFields.[]', function () {
|
|
return expandAttributeMeta(this, this.formFields);
|
|
}),
|
|
|
|
identityType: computed('constructor.modelName', function () {
|
|
const modelType = this.constructor.modelName.split('/')[1];
|
|
return modelType;
|
|
}),
|
|
});
|