diff options
author | Angelina Filippova <linakirsanova@gmail.com> | 2020-08-04 02:21:25 +0300 |
---|---|---|
committer | Angelina Filippova <linakirsanova@gmail.com> | 2020-08-04 02:21:25 +0300 |
commit | 63b1ca6a0766772edb2affc65c42e2dad96c0de4 (patch) | |
tree | 2fd3235efab9d70320702ef6ac82402063d81da4 /config | |
parent | ae95472dccbf708259f49730149a1599e9ac0e9c (diff) | |
download | pleroma-63b1ca6a0766772edb2affc65c42e2dad96c0de4.tar.gz |
Add label to :restrict_unauthenticated setting, fix typos
Diffstat (limited to 'config')
-rw-r--r-- | config/description.exs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/description.exs b/config/description.exs index a947c8f3f..9c8e330bf 100644 --- a/config/description.exs +++ b/config/description.exs @@ -3293,13 +3293,13 @@ config :pleroma, :config_description, [ group: :pleroma, key: :connections_pool, type: :group, - description: "Advanced settings for `gun` connections pool", + description: "Advanced settings for `Gun` connections pool", children: [ %{ key: :connection_acquisition_wait, type: :integer, description: - "Timeout to acquire a connection from pool.The total max time is this value multiplied by the number of retries. Default: 250ms.", + "Timeout to acquire a connection from pool. The total max time is this value multiplied by the number of retries. Default: 250ms.", suggestions: [250] }, %{ @@ -3334,7 +3334,7 @@ config :pleroma, :config_description, [ group: :pleroma, key: :pools, type: :group, - description: "Advanced settings for `gun` workers pools", + description: "Advanced settings for `Gun` workers pools", children: Enum.map([:federation, :media, :upload, :default], fn pool_name -> %{ @@ -3363,7 +3363,7 @@ config :pleroma, :config_description, [ group: :pleroma, key: :hackney_pools, type: :group, - description: "Advanced settings for `hackney` connections pools", + description: "Advanced settings for `Hackney` connections pools", children: [ %{ key: :federation, @@ -3427,6 +3427,7 @@ config :pleroma, :config_description, [ %{ group: :pleroma, key: :restrict_unauthenticated, + label: "Restrict Unauthenticated", type: :group, description: "Disallow viewing timelines, user profiles and statuses for unauthenticated users.", |