You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In org.views.py, a lot of Response messages can be replaced by objects from org.responses.py. The same needs to be done.
Describe the solution you'd like
Go to org.views.py and replace response, from an appropriate response from org.responses.py wherever possible.
Example
return Response(
{"message":"This organisation does not exist"},
status.HTTP_404_NOT_FOUND
)
Is your feature request related to a problem? Please describe.
In
org.views.py
, a lot of Response messages can be replaced by objects fromorg.responses.py
. The same needs to be done.Describe the solution you'd like
Go to
org.views.py
and replace response, from an appropriate response fromorg.responses.py
wherever possible.Example
becomes
The text was updated successfully, but these errors were encountered: