blob: f5dad3a1e5558c82e4caaa523cae3b3d9dfd9850 (
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
25
|
import {controllerApiConfig} from '../../config/app-config';
export default {
"name": "blueprint",
"connector": "rest",
"baseURL": controllerApiConfig.url,
"crud": false,
"debug": true,
"operations": [{
"template": {
"method": "GET",
"url": controllerApiConfig.url + "/blueprint-model/",
"headers": {
"accepts": "application/json",
"content-type": "application/json",
"authorization": controllerApiConfig.authToken
},
"responsePath": "$.*"
},
"functions": {
"getAllblueprints": []
}
}]
};
|