mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-29 17:39:48 +03:00
fix(statuses): Add HTTP 102 Processing
https://tools.ietf.org/html/rfc2518#section-10.1
This commit is contained in:
parent
db37512a6e
commit
fc91683fe3
|
@ -29,6 +29,7 @@ def is_server_error(code):
|
||||||
|
|
||||||
HTTP_100_CONTINUE = 100
|
HTTP_100_CONTINUE = 100
|
||||||
HTTP_101_SWITCHING_PROTOCOLS = 101
|
HTTP_101_SWITCHING_PROTOCOLS = 101
|
||||||
|
HTTP_102_PROCESSING = 102
|
||||||
HTTP_200_OK = 200
|
HTTP_200_OK = 200
|
||||||
HTTP_201_CREATED = 201
|
HTTP_201_CREATED = 201
|
||||||
HTTP_202_ACCEPTED = 202
|
HTTP_202_ACCEPTED = 202
|
||||||
|
|
Loading…
Reference in New Issue
Block a user