mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 15:41: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
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model, { belongsTo } from '@ember-data/model';
|
|
|
|
export default Model.extend({
|
|
backend: belongsTo('auth-method', { inverse: 'authConfigs', readOnly: true, async: false }),
|
|
});
|