SWE574-Fall2023-Group1 / SWE574-Fall2023-G1

Project for SWE 574 - Group 1
MIT License
7 stars 1 forks source link

Add success and msg fields in all responses #50

Closed ayhncvdr2 closed 1 year ago

ayhncvdr2 commented 1 year ago

We decided to add success and msg fields to each response. Thus, we'll be able to track error and success responses with one model in mobile.

Ex: Success login

{ "success": true "msg": "success" "access": "", "refresh": "" }

Ex: Fail login { "success": false "msg": "Invalid username or password" }