Files
alfresco-ng2-components/e2e/process-services-cloud/editProcessFilter.config.ts
T
Geeta Mandakini Ayyalasomayajula ab3bb9002f [ADF-4288] -Sort Process Custom filters (#4826)
* Update data-table-component.page.ts

* new pr

* fix error - sortOrder.toLowerCase is not a function

* new pr

* new process definition added

* taking the development branch changes
2019-06-13 11:04:46 +01:00

58 lines
1.7 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 EditProcessFilterConfiguration {
getConfiguration() {
return {
'filterProperties':
[
'appName',
'status',
'sort',
'order',
'processName',
'lastModified',
'processInstanceId',
'initiator',
'processDefinitionId',
'processDefinitionKey',
'startDate',
'businessKey'
],
'sortProperties':
[
'id',
'name',
'status',
'initiator',
'processDefinitionId',
'processDefinitionKey',
'lastModified',
'startDate',
'businessKey'
],
'actions':
[
'save',
'saveAs',
'delete'
]
};
}
}