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