diff options
author | href <href@random.sh> | 2020-06-10 17:34:23 +0200 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-06-13 12:08:46 +0300 |
commit | cb7be6eef252216d7ba5d5f72c8005d66b04986c (patch) | |
tree | 8f22e843125b9a501835d405d6c30f62fcc39e72 /docs/configuration/cheatsheet.md | |
parent | 520367d6fd8a268e0bc8c145a46aca46a62e8b66 (diff) | |
download | pleroma-cb7be6eef252216d7ba5d5f72c8005d66b04986c.tar.gz |
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 456762151..fad67fc4d 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -138,8 +138,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 |