mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 03:27:01 +02:00
10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
// this model is just used for integration tests
|
|
//
|
|
|
|
import AuthMethodModel from './auth-method';
|
|
import { fragment } from 'ember-data-model-fragments/attributes';
|
|
|
|
export default AuthMethodModel.extend({
|
|
otherConfig: fragment('mount-config', { defaultValue: {} }),
|
|
});
|