diff options
-rw-r--r-- | lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex b/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex index 7386d5acc..5bdca08a0 100644 --- a/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex +++ b/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex @@ -118,15 +118,15 @@ defmodule Pleroma.Web.ActivityPub.MRF.AutoSubjectPolicy do related_policy: "Pleroma.Web.ActivityPub.MRF.AutoSubjectPolicy", label: "MRF AutoSubject", description: - "Adds subject to messages matching a keyword or [Regex](https://hexdocs.pm/elixir/Regex.html).", + "Adds subject to messages matching a keyword or list of keywords.", children: [ %{ key: :match, type: {:list, :tuple}, description: """ - **Pattern**: a string or [Regex](https://hexdocs.pm/elixir/Regex.html) in the format of `~r/PATTERN/`. + **Keyword**: a string or list of keywords. E.g., to in the form of ["", " - **Keyword**: a keyword to apply to the subject field. + **Subject**: a string to insert into the subject field. """ } ] |