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
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ defmodule Pleroma.Plugs.UserIsAdminPlug 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