mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-03-04 18:13:05 +01: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
|