20 lines
560 B
JavaScript
20 lines
560 B
JavaScript
|
import Ember from 'ember';
|
||
|
import DS from 'ember-data';
|
||
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
||
|
|
||
|
const { assert, computed } = Ember;
|
||
|
export default DS.Model.extend({
|
||
|
formFields: computed(function() {
|
||
|
return assert('formFields should be overridden', false);
|
||
|
}),
|
||
|
|
||
|
fields: computed('formFields', 'formFields.[]', function() {
|
||
|
return expandAttributeMeta(this, this.get('formFields'));
|
||
|
}),
|
||
|
|
||
|
identityType: computed(function() {
|
||
|
let modelType = this.constructor.modelName.split('/')[1];
|
||
|
return modelType;
|
||
|
}),
|
||
|
});
|