31b4ed7a6d
This is a few combined iterations on the DAS feature.
7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
import { Model, belongsTo, hasMany } from 'ember-cli-mirage';
|
|
|
|
export default Model.extend({
|
|
taskGroup: belongsTo(),
|
|
recommendations: hasMany(),
|
|
});
|