mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [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
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
export class StartTaskCloudRequestModel {
|
|
|
|
name: string;
|
|
description: string;
|
|
assignee: string;
|
|
priority: string;
|
|
dueDate: Date;
|
|
candidateUsers: string[];
|
|
candidateGroups: string[];
|
|
payloadType: string;
|
|
formKey: string;
|
|
|
|
constructor(obj?: any) {
|
|
if (obj) {
|
|
this.name = obj.name || null;
|
|
this.description = obj.description || null;
|
|
this.assignee = obj.assignee || null;
|
|
this.priority = obj.priority || null;
|
|
this.dueDate = obj.dueDate || null;
|
|
this.candidateUsers = obj.candidateUsers || null;
|
|
this.candidateGroups = obj.candidateGroups || null;
|
|
this.formKey = obj.formKey || null;
|
|
this.payloadType = 'CreateTaskPayload';
|
|
}
|
|
}
|
|
}
|