aboutsummaryrefslogtreecommitdiff
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-13 12:08:46 +0300
commitcb7be6eef252216d7ba5d5f72c8005d66b04986c (patch)
tree8f22e843125b9a501835d405d6c30f62fcc39e72 /config/description.exs
parent520367d6fd8a268e0bc8c145a46aca46a62e8b66 (diff)
downloadpleroma-cb7be6eef252216d7ba5d5f72c8005d66b04986c.tar.gz
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 add1601e2..2f1eaf5f2 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -1623,14 +1623,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"]}
# ]
# ]
# },