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 }),
|
|
});
|