diff options
author | href <href@random.sh> | 2020-06-10 17:34:23 +0200 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-06-12 18:57:46 +0300 |
commit | 8efd1614ecfe694a7c6c58a6c59e3acf88e99c91 (patch) | |
tree | 01c321dee3d9c28dbbe3ff08a396fc7822be2ed6 /docs/configuration/cheatsheet.md | |
parent | 8b8b8599e9359ea5c1212144c50ab406025016c5 (diff) | |
download | pleroma-8efd1614ecfe694a7c6c58a6c59e3acf88e99c91.tar.gz pleroma-8efd1614ecfe694a7c6c58a6c59e3acf88e99c91.zip |
Remove use of atoms in MRF.UserAllowListPolicy
Diffstat (limited to 'docs/configuration/cheatsheet.md')
-rw-r--r-- | docs/configuration/cheatsheet.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 4012fe9b1..5d3f49401 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -133,8 +133,9 @@ their ActivityPub ID. An example: ```elixir -config :pleroma, :mrf_user_allowlist, - "example.org": ["https://example.org/users/admin"] +config :pleroma, :mrf_user_allowlist, %{ + "example.org" => ["https://example.org/users/admin"] +} ``` #### :mrf_object_age |