-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TSK-177 Add configuration file to taskana spring example project
- Loading branch information
1 parent
99b882f
commit ec16c92
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
...-example/src/main/resources/static/environments/data-sources/environment-information.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |