mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 19:35:41 +03:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
import { Factory, trait } from 'ember-cli-mirage';
|
|
import { generateResources } from '../common';
|
|
|
|
export default Factory.extend({
|
|
name: () => '!!!this should be set by the allocation that owns this task state!!!',
|
|
|
|
resources: generateResources,
|
|
});
|