diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-07-07 20:37:11 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-07-07 20:37:11 +0300 |
commit | 3e08e7715126ca1f3bfaf7dddf4806e76d9bd993 (patch) | |
tree | 8dc99a53ef52bfc83fb7c72089e396ed81ec34aa /docs/configuration/cheatsheet.md | |
parent | 4b53499bdcd8df59c30c0326eebfe30a7a13161e (diff) | |
download | pleroma-3e08e7715126ca1f3bfaf7dddf4806e76d9bd993.tar.gz |
[#1895] Made hashtag timeline respect `:restrict_unauthenticated` instance setting.
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 6b640cebc..1de51e72d 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -971,11 +971,11 @@ config :pleroma, :database_config_whitelist, [ ### :restrict_unauthenticated -Restrict access for unauthenticated users to timelines (public and federate), user profiles and statuses. +Restrict access for unauthenticated users to timelines (public and federated), user profiles and statuses. * `timelines`: public and federated timelines * `local`: public timeline - * `federated` + * `federated`: federated timeline (includes public timeline) * `profiles`: user profiles * `local` * `remote` @@ -983,6 +983,7 @@ Restrict access for unauthenticated users to timelines (public and federate), us * `local` * `remote` +Note: setting `restrict_unauthenticated/timelines/local` to `true` has no practical sense if `restrict_unauthenticated/timelines/federated` is set to `false` (since local public activities will still be delivered to unauthenticated users as part of federated timeline). ## Pleroma.Web.ApiSpec.CastAndValidate |