Matt
08/02/2018, 8:56 AMval UnsupportedMediaType = HttpStatusCode(415, "Unsupported Media Type")
val RequestedRangeNotSatisfiable = HttpStatusCode(416, "Requested Range Not Satisfiable")
val ExceptionFailed = HttpStatusCode(417, "Exception Failed")
val UpgradeRequired = HttpStatusCode(426, "Upgrade Required")
val TooManyRequests = HttpStatusCode(429, "Too Many Requests")
val RequestHeaderFieldTooLarge = HttpStatusCode(431, "Request Header Fields Too Large")
I was wanting to use "422 Unprocessable Entity", but there isn't a constant for it in io.ktor.http.HttpStatusCode
yet. Is it a case of "PRs welcome", or is there a deliberate reason not to include certain codes?cy
08/02/2018, 9:04 AMcy
08/02/2018, 9:05 AMcy
08/02/2018, 9:05 AMcy
08/02/2018, 9:06 AMMatt
08/02/2018, 9:20 AMMatt
08/02/2018, 9:23 AMorangy
Matt
08/03/2018, 10:16 AM