open-nomad/ui/mirage/models/task-group-scale.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
156 B
JavaScript
Raw Normal View History

2020-07-25 04:36:43 +00:00
import { Model, belongsTo, hasMany } from 'ember-cli-mirage';
export default Model.extend({
jobScale: belongsTo(),
events: hasMany('scale-event'),
});