mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3876] StartTaskCloud - Be able to start a task with a form (#4590)
* [ADF-3876] Added form cloud model * [ADF-3876] Added service to get forms * [ADF-3876] Added form selection to start task * [ADF-3876] Added tests * [ADF-3876] StartTaskCloud - Be able to start a task with a form * [ADF-3876] StartTaskCloud - Be able to start a task with a form * [ADF-3876] StartTaskCloud - Be able to start a task with a form * [ADF-3876] Added form cloud model * [ADF-3876] Added service to get forms * [ADF-3876] Added form selection to start task * [ADF-3876] Added tests * [ADF-3876] StartTaskCloud - Be able to start a task with a form * [ADF-3876] StartTaskCloud - changed name to component * [ADF-3876] StartTaskCloud - Renamed component * Rename form-selector-cloud.component.md to form-definition-selector-cloud.component.md * [ADF-3876] Improve and clean code and fix service * [ADF-3876] Fix unit test * Update app.module.ts * fix module * move components in the right folders * fix e2e task list
This commit is contained in:
committed by
Eugenio Romano
parent
11688f5778
commit
b371929170
@@ -24,6 +24,7 @@ export class StartTaskCloudRequestModel {
|
||||
candidateUsers: string[];
|
||||
candidateGroups: string[];
|
||||
payloadType: string;
|
||||
formKey: string;
|
||||
|
||||
constructor(obj?: any) {
|
||||
if (obj) {
|
||||
@@ -34,6 +35,7 @@ export class StartTaskCloudRequestModel {
|
||||
this.dueDate = obj.dueDate || null;
|
||||
this.candidateUsers = obj.candidateUsers || null;
|
||||
this.candidateGroups = obj.candidateGroups || null;
|
||||
this.formKey = obj.formKey || null;
|
||||
this.payloadType = 'CreateTaskPayload';
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user