File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1515
1616@router .get ('/' )
1717def consult_a_doctor ():
18- return { "message" : MESSAGE_UNDER_CONSTRUCTION }
18+ return { "status" : "pending" , " message" : MESSAGE_UNDER_CONSTRUCTION }
1919
2020
2121@router .post ('/make_consultation' )
2222def make_consultation ():
23- return { "message" : MESSAGE_UNDER_CONSTRUCTION }
23+ return { "status" : "pending" , " message" : MESSAGE_UNDER_CONSTRUCTION }
2424
2525
2626@router .get ('/consultation_history' )
2727def consultation_history ():
28- return { "message" : MESSAGE_UNDER_CONSTRUCTION }
28+ return { "status" : "pending" , " message" : MESSAGE_UNDER_CONSTRUCTION }
2929
3030
3131@router .get ('/consultation_view' )
3232def consultation_view ():
33- return { "message" : MESSAGE_UNDER_CONSTRUCTION }
33+ return { "status" : "pending" , " message" : MESSAGE_UNDER_CONSTRUCTION }
3434
3535
3636@router .post ('/close_consultation' )
3737def close_consultation ():
38- return { "message" : MESSAGE_UNDER_CONSTRUCTION }
38+ return { "status" : "pending" , " message" : MESSAGE_UNDER_CONSTRUCTION }
3939
4040
4141@router .post ('/rate_review' )
4242def rate_review ():
43- return { "message" : MESSAGE_UNDER_CONSTRUCTION }
43+ return { "status" : "pending" , " message" : MESSAGE_UNDER_CONSTRUCTION }
4444
You can’t perform that action at this time.
0 commit comments