lib/pleroma/plugs/user_is_admin_plug.ex: change 403 string to “User is not admin.”

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-11-10 14:43:22 +01:00
parent f9d05902fe
commit 4a79b89dba
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE

View file

@ -13,7 +13,7 @@ def call(%{assigns: %{user: %User{info: %{"is_admin" => true}}}} = conn, _) do
def call(conn, _) do
conn
|> put_resp_content_type("application/json")
|> send_resp(403, Jason.encode!(%{error: "Not admin."}))
|> send_resp(403, Jason.encode!(%{error: "User is not admin."}))
|> halt
end
end