mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
* Add map between model types and helpUrls, update tests * replace modelProto.getHelpUrl with new helper util * Remove all useOpenApi and getHelpUrl instances from models * Add missing auth config model type
21 lines
626 B
JavaScript
21 lines
626 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model, { belongsTo } from '@ember-data/model';
|
|
import { computed } from '@ember/object';
|
|
import { combineFieldGroups } from 'vault/utils/openapi-to-attrs';
|
|
import fieldToAttrs from 'vault/utils/field-to-attrs';
|
|
|
|
export default Model.extend({
|
|
ca: belongsTo('kmip/ca', { async: false, inverse: 'config' }),
|
|
|
|
fieldGroups: computed('newFields', function () {
|
|
let groups = [{ default: ['listenAddrs', 'connectionTimeout'] }];
|
|
|
|
groups = combineFieldGroups(groups, this.newFields, []);
|
|
return fieldToAttrs(this, groups);
|
|
}),
|
|
});
|