2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-04-14 09:20:18 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.NoOpPolicy do
|
2019-05-06 02:28:04 +00:00
|
|
|
@moduledoc "Does nothing (lets the messages go through unmodified)"
|
2021-06-07 19:22:08 +00:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
|
2018-05-10 16:34:09 +00:00
|
|
|
|
|
|
|
@impl true
|
2018-04-14 09:20:18 +00:00
|
|
|
def filter(object) do
|
|
|
|
{:ok, object}
|
|
|
|
end
|
2019-08-13 21:52:54 +00:00
|
|
|
|
|
|
|
@impl true
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe, do: {:ok, %{}}
|
2018-04-14 09:20:18 +00:00
|
|
|
end
|