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
@Zaiku1972 there are serializer validations to be added, basically wherever you think there is a possibility of an exception, add a serializer validation
somewhat like...
fromrest_frameworkimportserializers# if validation error is to be raisedraiseserializers.ValidationError("msg to be responded with")
note that this is only an example. There are more sophisticated means of raising validation errors
The text was updated successfully, but these errors were encountered:
@Zaiku1972 there are serializer validations to be added, basically wherever you think there is a possibility of an exception, add a serializer validation
somewhat like...
note that this is only an example. There are more sophisticated means of raising validation errors
The text was updated successfully, but these errors were encountered: