summaryrefslogtreecommitdiff
path: root/config/description.exs
diff options
context:
space:
mode:
authorhref <href@random.sh>2020-06-10 17:34:23 +0200
committerrinpatch <rinpatch@sdf.org>2020-06-12 18:57:46 +0300
commit8efd1614ecfe694a7c6c58a6c59e3acf88e99c91 (patch)
tree01c321dee3d9c28dbbe3ff08a396fc7822be2ed6 /config/description.exs
parent8b8b8599e9359ea5c1212144c50ab406025016c5 (diff)
downloadpleroma-8efd1614ecfe694a7c6c58a6c59e3acf88e99c91.tar.gz
pleroma-8efd1614ecfe694a7c6c58a6c59e3acf88e99c91.zip
Remove use of atoms in MRF.UserAllowListPolicy
Diffstat (limited to 'config/description.exs')
-rw-r--r--config/description.exs6
1 files changed, 2 insertions, 4 deletions
diff --git a/config/description.exs b/config/description.exs
index 2623e3683..37cb548ff 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -1483,14 +1483,12 @@ config :pleroma, :config_description, [
# %{
# group: :pleroma,
# key: :mrf_user_allowlist,
- # type: :group,
+ # type: :map,
# description:
# "The keys in this section are the domain names that the policy should apply to." <>
# " Each key should be assigned a list of users that should be allowed through by their ActivityPub ID",
- # children: [
- # ["example.org": ["https://example.org/users/admin"]],
# suggestions: [
- # ["example.org": ["https://example.org/users/admin"]]
+ # %{"example.org" => ["https://example.org/users/admin"]}
# ]
# ]
# },