aboutsummaryrefslogtreecommitdiff
path: root/config/config.exs
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-03-20 13:04:37 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-03-20 16:36:20 +0300
commitfe15f0ba15d02809fa4c21fb646e65d06060f3bb (patch)
treef72b9278a7db7e5b9f3439974e06e26ad1095e24 /config/config.exs
parentd63dca8d99196c91dc3e20e2d27f61ea753b84af (diff)
downloadpleroma-fe15f0ba15d02809fa4c21fb646e65d06060f3bb.tar.gz
restrict_unauthenticated setting
Diffstat (limited to 'config/config.exs')
-rw-r--r--config/config.exs5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs
index 3357e23e7..2ab939107 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -624,6 +624,11 @@ config :pleroma, Pleroma.Repo,
parameters: [gin_fuzzy_search_limit: "500"],
prepare: :unnamed
+config :pleroma, :restrict_unauthenticated,
+ timelines: %{local: false, federated: false},
+ profiles: %{local: false, remote: false},
+ activities: %{local: false, remote: false}
+
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"