mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 02:28:45 +00:00
9 lines
174 B
Elixir
9 lines
174 B
Elixir
|
defmodule Pleroma.Web.ActivityPub.MRF.DropPolicy do
|
||
|
require Logger
|
||
|
|
||
|
def filter(object) do
|
||
|
Logger.info("REJECTING #{inspect(object)}")
|
||
|
{:reject, object}
|
||
|
end
|
||
|
end
|