Merge branch 'develop' into refactor/notification_settings
[akkoma] / lib / pleroma / plugs / user_is_admin_plug.ex
index cf22ce5d064602926db32e0820ea636f250472bb..488a61d1d4940304423694a94c8127a43a8ca139 100644 (file)
@@ -1,19 +1,24 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Plugs.UserIsAdminPlug do
+  import Pleroma.Web.TranslationHelpers
   import Plug.Conn
+
   alias Pleroma.User
 
   def init(options) do
     options
   end
 
-  def call(%{assigns: %{user: %User{info: %{is_admin: true}}}} = conn, _) do
+  def call(%{assigns: %{user: %User{is_admin: true}}} = conn, _) do
     conn
   end
 
   def call(conn, _) do
     conn
-    |> put_resp_content_type("application/json")
-    |> send_resp(403, Jason.encode!(%{error: "User is not admin."}))
-    |> halt
+    |> render_error(:forbidden, "User is not an admin.")
+    |> halt()
   end
 end