mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-25 09:21:57 +03:00
Remove obsolete helper function.
This commit is contained in:
parent
f8596e8df8
commit
14fb33e44b
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user