[ADF-3946] Add the GroupCloudComponent to the StartTaskCloudComponent (#4202)

* Add GroupComponent to the start task cloud

* [ADF-3946] Exported unexported componentes in group module

* [ADF-3946] Used group module in start task module

* Fix import

* Fix build name

* Fix build name unit tests

* Fix unit test

* Add space to rebuild travis
This commit is contained in:
Maurizio Vitale
2019-01-24 14:18:35 +00:00
committed by GitHub
parent c34ff07dd4
commit a872c6d8fa
11 changed files with 35 additions and 13 deletions

View File

@@ -19,6 +19,7 @@ export class StartTaskCloudRequestModel {
name: string;
description: string;
assignee: string;
candidateGroups: string [];
priority: string;
dueDate: Date;
payloadType: string;
@@ -30,6 +31,7 @@ export class StartTaskCloudRequestModel {
this.assignee = obj.assignee || null;
this.priority = obj.priority || null;
this.dueDate = obj.dueDate || null;
this.candidateGroups = obj.candidateGroups || null;
this.payloadType = 'CreateTaskPayload';
}
}