api-manager.ts
1.18 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
import { client } from './client';
import { RecoilState } from 'recoil';
export default {
getDoctorRegReqList : (token : RecoilState<any>) => {
return client.get('/manage/doctor', {
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.post('/manage/doctor/accept', Data, {
headers : {
Authorization : token,
},
});
},
rejectDoctorRegReq : (token : RecoilState<any>, Data : any) => {
return client.post('/manage/doctor/reject', Data, {
headers : {
Authorization : token,
},
});
},
validateDoctorLicense : (token : RecoilState<any>, Data : any) => {
return client.post('/manage/doctor/validate', Data, {
headers : {
Authorization : token,
},
});
},
};