forked from AkkomaGang/akkoma
19 lines
365 B
Elixir
19 lines
365 B
Elixir
|
defmodule Pleroma.Web.FederatingPlug do
|
||
|
import Plug.Conn
|
||
|
|
||
|
def init(options) do
|
||
|
options
|
||
|
end
|
||
|
|
||
|
def call(conn, opts) do
|
||
|
if Keyword.get(Application.get_env(:pleroma, :instance), :federating) do
|
||
|
conn
|
||
|
else
|
||
|
conn
|
||
|
|> put_status(404)
|
||
|
|> Phoenix.Controller.render(Pleroma.Web.ErrorView, "404.json")
|
||
|
|> halt()
|
||
|
end
|
||
|
end
|
||
|
end
|