forked from AkkomaGang/akkoma
e9e6f37bda
- The `:pleroma, :instance, :rewrite_policy` can now be either a policy or a list of policies - Made a behaviour for MRF policies
8 lines
159 B
Elixir
8 lines
159 B
Elixir
defmodule Pleroma.Web.ActivityPub.MRF.NoOpPolicy do
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
@impl true
|
|
def filter(object) do
|
|
{:ok, object}
|
|
end
|
|
end
|