fix(statuses): Add HTTP 308 Permanent Redirect

See https://tools.ietf.org/html/rfc7538#section-3
This commit is contained in:
Florian Wendelborn 2019-05-22 18:48:10 +02:00 committed by GitHub
parent db37512a6e
commit 2965960109
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,7 @@ HTTP_304_NOT_MODIFIED = 304
HTTP_305_USE_PROXY = 305
HTTP_306_RESERVED = 306
HTTP_307_TEMPORARY_REDIRECT = 307
HTTP_308_PERMANENT_REDIRECT = 308
HTTP_400_BAD_REQUEST = 400
HTTP_401_UNAUTHORIZED = 401
HTTP_402_PAYMENT_REQUIRED = 402