mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
24 lines
604 B
Elixir
24 lines
604 B
Elixir
|
# Pleroma: A lightweight social networking server
|
||
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
defmodule Pleroma.Web.Plugs.UserIsStaffPlug do
|
||
|
import Pleroma.Web.TranslationHelpers
|
||
|
import Plug.Conn
|
||
|
|
||
|
alias Pleroma.User
|
||
|
|
||
|
def init(options) do
|
||
|
options
|
||
|
end
|
||
|
|
||
|
def call(%{assigns: %{user: %User{is_admin: true}}} = conn, _), do: conn
|
||
|
def call(%{assigns: %{user: %User{is_moderator: true}}} = conn, _), do: conn
|
||
|
|
||
|
def call(conn, _) do
|
||
|
conn
|
||
|
|> render_error(:forbidden, "User is not a staff member.")
|
||
|
|> halt()
|
||
|
end
|
||
|
end
|