a9004faa11
This adds details about task lifecycles to allocations, task groups, and tasks. It includes a live-updating timeline-like chart on allocations.
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
import attr from 'ember-data/attr';
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
|
import { fragmentOwner } from 'ember-data-model-fragments/attributes';
|
|
|
|
export default Fragment.extend({
|
|
task: fragmentOwner(),
|
|
|
|
hook: attr('string'),
|
|
sidecar: attr('boolean'),
|
|
});
|