mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 03:57:01 +02:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
// this model is just used for integration tests
|
|
//
|
|
|
|
import AuthMethodModel from './auth-method';
|
|
import { belongsTo } from '@ember-data/model';
|
|
|
|
export default AuthMethodModel.extend({
|
|
otherConfig: belongsTo('mount-config', { async: false, inverse: null }),
|
|
});
|