diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-10-10 01:29:41 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-10-10 01:58:57 -0500 |
commit | 2fc7ce3e1e2fb746305944d40ac74da16d48f7aa (patch) | |
tree | ff9562eecf9b05cfc3b41a8e7233869be162eb98 | |
parent | d2364276a1cbfb2b6b3851fd9fb0e48d773b923b (diff) | |
download | pleroma-2fc7ce3e1e2fb746305944d40ac74da16d48f7aa.tar.gz pleroma-2fc7ce3e1e2fb746305944d40ac74da16d48f7aa.zip |
Blocks: add blockers_visible config
-rw-r--r-- | config/config.exs | 1 | ||||
-rw-r--r-- | config/description.exs | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index d53663d36..befc6840d 100644 --- a/config/config.exs +++ b/config/config.exs @@ -363,6 +363,7 @@ config :pleroma, :manifest, config :pleroma, :activitypub, unfollow_blocked: true, outgoing_blocks: true, + blockers_visible: true, follow_handshake_timeout: 500, note_replies_output_limit: 5, sign_object_fetches: true, diff --git a/config/description.exs b/config/description.exs index 3902b9632..4f495e828 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2093,6 +2093,11 @@ config :pleroma, :config_description, [ description: "Whether to federate blocks to other instances" }, %{ + key: :blockers_visible, + type: :boolean, + description: "Whether a user can see someone who has blocked them" + }, + %{ key: :sign_object_fetches, type: :boolean, description: "Sign object fetches with HTTP signatures" |