mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-02-01 00:49:09 +01:00
8 lines
174 B
Elixir
8 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
|