mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
import DS from 'ember-data';
|
|
const { belongsTo } = DS;
|
|
|
|
export default DS.Model.extend({
|
|
backend: belongsTo('auth-method', { readOnly: true, async: false }),
|
|
});
|