Remove obsolete helper function.

This commit is contained in:
Dillon Kearns 2022-03-08 16:13:19 -08:00
parent f8596e8df8
commit 14fb33e44b
2 changed files with 3 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@ module Server.Request exposing
( Parser
, method, rawBody, allCookies, rawHeaders, queryParams
, Method(..), methodToString
, succeed, fromResult, skip, validationError
, succeed, fromResult, skip
, requestTime, optionalHeader, expectContentType, expectJsonBody
, acceptMethod, acceptContentTypes
, map, map2, oneOf, andMap, andThen
@ -27,7 +27,7 @@ module Server.Request exposing
@docs Method, methodToString
@docs succeed, fromResult, skip, validationError
@docs succeed, fromResult, skip
@docs requestTime, optionalHeader, expectContentType, expectJsonBody
@ -239,12 +239,6 @@ type ValidationError
| MissingQueryParam { missingParam : String, allQueryParams : String }
{-| -}
validationError : String -> ValidationError
validationError =
ValidationError
{-| -}
errorsToString : ( ValidationError, List ValidationError ) -> String
errorsToString validationErrors =