-
Notifications
You must be signed in to change notification settings - Fork 1
/
ionic.config1.json
executable file
·61 lines (61 loc) · 1.55 KB
/
ionic.config1.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "test",
"integrations": {
"cordova": {}
},
"type": "ionic-angular",
"proxies": [
{
"path": "/get_attendance",
"proxyUrl": "https://127.0.0.1:8080/api/v1/attendances/get_attendance"
},
{
"path": "/get_service_requests",
"proxyUrl": "https://127.0.0.1:8080/api/v1/all_service_requests"
},
{
"path": "/create_service_request",
"proxyUrl": "https://localhost:8080/api/v1/create_service_request"
},
{
"path": "/all_ideas",
"proxyUrl": "https://localhost/api/v1/all_ideas"
},
{
"path": "/new_idea",
"proxyUrl": "https://localhost:8080/api/v1/create_idea"
},
{
"path": "/all_grievances",
"proxyUrl": "https://localhost:8080/api/v1/all_grievances"
},
{
"path": "/new_grievance",
"proxyUrl": "https://localhost:8080/api/v1/create_grievance"
},
{
"path": "/all_grievance_categories",
"proxyUrl": "https://localhost:8080/api/v1/all_grievance_categories"
},
{
"path": "/get_holiday_list",
"proxyUrl": "https://localhost:8080/api/v1/get_holiday_list"
},
{
"path": "/leave_records",
"proxyUrl": "https://system-x.herokuapp.com/api/leave_application_records"
},
{
"path": "/upload_image",
"proxyUrl": "https://127.0.0.1:8080/api/upload_image"
},
{
"path": "/get_idea",
"proxyUrl": "https://127.0.0.1:8080/api/v1/get_idea"
},
{
"path": "/get_service_request",
"proxyUrl": "https://127.0.0.1:8080/api/v1/get_service_request"
}
]
}