api-manager.ts
1.62 KB
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
import { client } from './client';
import { RecoilState } from 'recoil';
export default {
getDoctorRegReqList : (token : RecoilState<any>) => {
return client.get('/manage/doctor', {
headers : {
Authorization : token,
},
});
},
getDoctorSecReqList : (token : RecoilState<any>) => {
return client.get('/manage/doctor/secession', {
headers : {
Authorization : token,
},
});
},
getDoctorRegReqDetail : (token : RecoilState<any>, doctorId : string) => {
return client.get(`/manage/doctor/${doctorId}`, {
headers : {
Authorization : token,
},
});
},
acceptDoctorRegReq : (token : RecoilState<any>, Data : any) => {
return client.patch('/manage/doctor/accept', Data, {
headers : {
Authorization : token,
},
});
},
rejectDoctorRegReq : (token : RecoilState<any>, Data : any) => {
return client.patch('/manage/doctor/reject', Data, {
headers : {
Authorization : token,
},
});
},
acceptDoctorSecReq : (token : RecoilState<any>, Data : any) => {
return client.patch('/manage/doctor/secession', Data, {
headers : {
Authorization : token,
},
});
},
validateDoctorLicense : (token : RecoilState<any>, Data : any) => {
return client.post('/manage/doctor/validate', Data, {
headers : {
Authorization : token,
},
});
},
};