2021-11-30 20:10:01 +00:00
|
|
|
import Controller from '@ember/controller';
|
|
|
|
|
|
|
|
export default class AllocationsAllocationTaskController extends Controller {
|
2021-12-17 16:29:36 +00:00
|
|
|
get task() {
|
|
|
|
return this.model;
|
|
|
|
}
|
|
|
|
|
|
|
|
get breadcrumb() {
|
|
|
|
return {
|
|
|
|
title: 'Task',
|
|
|
|
label: this.task.get('name'),
|
2022-01-20 15:39:02 +00:00
|
|
|
args: [
|
|
|
|
'allocations.allocation.task',
|
|
|
|
this.task.get('allocation'),
|
|
|
|
this.task,
|
|
|
|
],
|
2021-12-17 16:29:36 +00:00
|
|
|
};
|
2021-11-30 20:10:01 +00:00
|
|
|
}
|
|
|
|
}
|