[DW-1486] form versioning and cloud service enhancements (#5248)

* support form versions retrieval

* rework cloud services, reduce code duplication

* revert app config changes

* fix api spelling error

* support task form versioning

* turn TaskDetailsCloudModel into interface

* remove commented code

* fix test

* update tests

* remove useless provider declarations
This commit is contained in:
Denys Vuika
2019-11-14 14:04:21 +00:00
committed by Eugenio Romano
parent 1f768eb22f
commit 3644ba8b7c
40 changed files with 502 additions and 824 deletions

View File

@@ -28,7 +28,7 @@ const column = {
assignee: 'Assignee',
parentTaskId: 'ParentTaskId',
priority: 'Priority',
standAlone: 'StandAlone',
standalone: 'Standalone',
owner: 'Owner'
};
@@ -149,7 +149,7 @@ export class TaskListCloudComponentPage {
}
async getAllRowsByStandAloneColumn() {
return this.dataTable.getAllRowsColumnValues(column.standAlone);
return this.dataTable.getAllRowsColumnValues(column.standalone);
}
async getAllRowsByOwnerColumn() {