Merge branch 'develop' into refactor/notification_settings
[akkoma] / lib / pleroma / plugs / user_is_admin_plug.ex
index ee808f31f2f53988ff7bbfdeba61977171ad48e3..488a61d1d4940304423694a94c8127a43a8ca139 100644 (file)
@@ -1,10 +1,11 @@
 # Pleroma: A lightweight social networking server
-# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
+# 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
@@ -17,7 +18,7 @@ defmodule Pleroma.Plugs.UserIsAdminPlug do
 
   def call(conn, _) do
     conn
-    |> render_error(:forbidden, "User is not admin.")
-    |> halt
+    |> render_error(:forbidden, "User is not an admin.")
+    |> halt()
   end
 end