summaryrefslogtreecommitdiffstats
path: root/cds-ui/server/src/datasources/blueprint.datasource-template.ts
blob: 3cbf095765b2d1007f82f300744dd894b8acaf52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {controllerApiConfig} from '../../config/app-config';

export default {
    "name": "blueprint",
    "connector": "rest",
    "baseURL": controllerApiConfig.url,
    "crud": false,
    "operations": [{
        "template": {
            "method": "GET",
            "url": controllerApiConfig.url + "/blueprint-model/",
            "headers": {
                "accepts": "application/json",
                "content-type": "application/json",
                "authorization": controllerApiConfig.authToken
            },
            "responsePath": "$.*"
        },
        "functions": {
            "getAllblueprints": []

        }
    }]
};