8000 Release v2.0 by jacebrowning · Pull Request #111 · flask-api/flask-api · GitHub
[go: up one dir, main page]

Skip to content

Release v2.0 #111

New issue

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

Merged
merged 14 commits into from
Nov 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add RFC 2324 compatability
Implemented support for the HTTP 418 status code, specified in [RFC 2324](https://tools.ietf.org/html/rfc2324)
  • Loading branch information
himmelmaus authored Jan 25, 2019
commit f89e18ca7d45d26b6b2d1ad140319213842347fc
1 change: 1 addition & 0 deletions flask_api/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def is_server_error(code):
HTTP_415_UNSUPPORTED_MEDIA_TYPE = 415
HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE = 416
HTTP_417_EXPECTATION_FAILED = 417
HTTP_418_IM_A_TEAPOT = 418
HTTP_428_PRECONDITION_REQUIRED = 428
HTTP_429_TOO_MANY_REQUESTS = 429
HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE = 431
Expand Down
0