1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Plugs.UserIsAdminPlug do
6 import Pleroma.Web.TranslationHelpers
15 def call(%{assigns: %{user: %User{is_admin: true}}} = conn, _) do
21 |> render_error(:forbidden, "User is not an admin.")