blob: 8d47285d93ac49f9a488c01b32221aaf9a36aaf2 [file] [log] [blame] [edit]
/**
* 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 }),
});