From ec16c92b1b64e3022a227d71df2c1a9565f27c9c Mon Sep 17 00:00:00 2001 From: Martin Rojas Miguel Angel Date: Tue, 15 May 2018 08:34:57 +0200 Subject: [PATCH] TSK-177 Add configuration file to taskana spring example project --- .../data-sources/environment-information.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 rest/taskana-rest-spring-example/src/main/resources/static/environments/data-sources/environment-information.json diff --git a/rest/taskana-rest-spring-example/src/main/resources/static/environments/data-sources/environment-information.json b/rest/taskana-rest-spring-example/src/main/resources/static/environments/data-sources/environment-information.json new file mode 100644 index 0000000000..96d257b235 --- /dev/null +++ b/rest/taskana-rest-spring-example/src/main/resources/static/environments/data-sources/environment-information.json @@ -0,0 +1,53 @@ +{ + "taskanaRestUrl": "https://taskana-rest.mybluemix.net", + "customizedFields": { + "EN": { + "workbaskets": { + "information": { + "custom1": { + "field": "Customized field 1 title", + "visible": true + }, + "custom3": { + "field": "", + "visible": false + } + }, + "access-items": { + "custom3": { + "field": "", + "visible": false + }, + "custom9": { + "field": "Some custom field", + "visible": true + }, + "custom10": { + "field": "", + "visible": false + }, + "custom11": { + "field": "", + "visible": false + }, + "custom12": { + "field": "", + "visible": false + } + } + }, + "classifications": { + "information": { + "custom1": { + "field": "Classification custom 1", + "visible": true + }, + "custom3": { + "field": "", + "visible": false + } + } + } + } + } +}