open-vault/ui/app/models/auth-config.js

7 lines
164 B
JavaScript
Raw Normal View History

2018-04-03 14:16:57 +00:00
import DS from 'ember-data';
const { belongsTo } = DS;
export default DS.Model.extend({
backend: belongsTo('auth-method', { readOnly: true, async: false }),
});