We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
json_failed_resp_with_message_minimal
Now the json_failed_resp_with_message method prepends the status code message(Bad Request: ) before the actual message like below:
json_failed_resp_with_message
Bad Request:
{ "status": "failed", "code": 400, "message": "Bad Request: Username should only contain lowercase alpha-numeric characters" }
But, it should provide a method not to prepend Bad Request: text e.g. method json_failed_resp_with_message_minimal as below:
{ "status": "failed", "code": 400, "message": "Username should only contain lowercase alpha-numeric characters" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now the
json_failed_resp_with_message
method prepends the status code message(Bad Request:
) before the actual message like below:But, it should provide a method not to prepend
Bad Request:
text e.g. methodjson_failed_resp_with_message_minimal
as below:The text was updated successfully, but these errors were encountered: