summaryrefslogtreecommitdiffstats
path: root/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts')
-rw-r--r--cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts91
1 files changed, 91 insertions, 0 deletions
diff --git a/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts b/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts
new file mode 100644
index 000000000..b987e588c
--- /dev/null
+++ b/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts
@@ -0,0 +1,91 @@
+import {controllerApiConfig} from '../../config/app-config';
+
+export default {
+ "name": "resourceDictionary",
+ "connector": "rest",
+ "baseURL": controllerApiConfig.url + "/dictionary",
+ "crud": false,
+ "operations": [{
+ "template": {
+ "method": "GET",
+ "url": controllerApiConfig.url + "/dictionary/{name}",
+ "headers": {
+ "accepts": "application/json",
+ "content-type": "application/json",
+ "authorization": controllerApiConfig.authToken
+ },
+ "responsePath": "$.*"
+ },
+ "functions": {
+ "getByName": ["name"]
+
+ }
+ },
+ {
+ "template": {
+ "method": "GET",
+ "url": controllerApiConfig.url + "/dictionary/source-mapping",
+ "headers": {
+ "accepts": "application/json",
+ "content-type": "application/json",
+ "authorization": controllerApiConfig.authToken
+ },
+ "responsePath": "$.*"
+ },
+ "functions": {
+ "getSourceMapping": []
+
+ }
+ },
+ {
+ "template": {
+ "method": "GET",
+ "url": controllerApiConfig.url + "/dictionary/search/{tags}",
+ "headers": {
+ "accepts": "application/json",
+ "content-type": "application/json",
+ "authorization": controllerApiConfig.authToken
+ },
+ "responsePath": "$.*"
+ },
+ "functions": {
+ "getByTags": ["tags"]
+
+ }
+ },
+ {
+ "template": {
+ "method": "POST",
+ "url": controllerApiConfig.url + "/dictionary",
+ "headers": {
+ "accepts": "application/json",
+ "content-type": "application/json",
+ "authorization": controllerApiConfig.authToken
+ },
+ "body": "{resourceDictionary}",
+ "responsePath": "$.*"
+ },
+ "functions": {
+ "save": ["resourceDictionary"]
+
+ }
+ },
+ {
+ "template": {
+ "method": "POST",
+ "url": controllerApiConfig.url + "/dictionary/by-names",
+ "headers": {
+ "accepts": "application/json",
+ "content-type": "application/json",
+ "authorization": controllerApiConfig.authToken
+ },
+ "body": "{resourceDictionaryList}",
+ "responsePath": "$.*"
+ },
+ "functions": {
+ "searchbyNames": ["resourceDictionaryList"]
+
+ }
+ }
+ ]
+}; \ No newline at end of file