forked from AkkomaGang/akkoma
Render better errors for ENUM validation
This commit is contained in:
parent
f070b5569c
commit
e55fd530bc
1 changed files with 3 additions and 0 deletions
|
@ -17,6 +17,9 @@ def init(opts), do: opts
|
|||
def call(conn, errors) do
|
||||
errors =
|
||||
Enum.map(errors, fn
|
||||
%{name: nil, reason: :invalid_enum} = err ->
|
||||
%OpenApiSpex.Cast.Error{err | name: err.value}
|
||||
|
||||
%{name: nil} = err ->
|
||||
%OpenApiSpex.Cast.Error{err | name: List.last(err.path)}
|
||||
|
||||
|
|
Loading…
Reference in a new issue