forked from AkkomaGang/akkoma
Change validation error status codes to be more appropriate
This commit is contained in:
parent
ee68244141
commit
0407ffe75f
2 changed files with 6 additions and 6 deletions
|
@ -488,12 +488,12 @@ def post_status(%{assigns: %{user: user}} = conn, %{"status" => _} = params) do
|
|||
case get_cached_status_or_post(conn, params) do
|
||||
{:ignore, message} ->
|
||||
conn
|
||||
|> put_status(401)
|
||||
|> put_status(422)
|
||||
|> json(%{error: message})
|
||||
|
||||
{:error, message} ->
|
||||
conn
|
||||
|> put_status(401)
|
||||
|> put_status(422)
|
||||
|> json(%{error: message})
|
||||
|
||||
{_, activity} ->
|
||||
|
|
|
@ -181,7 +181,7 @@ test "option limit is enforced", %{conn: conn} do
|
|||
"poll" => %{"options" => Enum.map(0..limit, fn _ -> "desu" end), "expires_in" => 1}
|
||||
})
|
||||
|
||||
%{"error" => error} = json_response(conn, 401)
|
||||
%{"error" => error} = json_response(conn, 422)
|
||||
assert error == "Poll can't contain more than #{limit} options"
|
||||
end
|
||||
|
||||
|
@ -200,7 +200,7 @@ test "option character limit is enforced", %{conn: conn} do
|
|||
}
|
||||
})
|
||||
|
||||
%{"error" => error} = json_response(conn, 401)
|
||||
%{"error" => error} = json_response(conn, 422)
|
||||
assert error == "Poll options cannot be longer than #{limit} characters each"
|
||||
end
|
||||
|
||||
|
@ -219,7 +219,7 @@ test "minimal date limit is enforced", %{conn: conn} do
|
|||
}
|
||||
})
|
||||
|
||||
%{"error" => error} = json_response(conn, 401)
|
||||
%{"error" => error} = json_response(conn, 422)
|
||||
assert error == "Expiration date is too soon"
|
||||
end
|
||||
|
||||
|
@ -238,7 +238,7 @@ test "maximum date limit is enforced", %{conn: conn} do
|
|||
}
|
||||
})
|
||||
|
||||
%{"error" => error} = json_response(conn, 401)
|
||||
%{"error" => error} = json_response(conn, 422)
|
||||
assert error == "Expiration date is too far in the future"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue