diff options
| author | Alex Gleason <alex@alexgleason.me> | 2021-12-19 12:55:36 -0600 | 
|---|---|---|
| committer | Alex Gleason <alex@alexgleason.me> | 2021-12-19 12:55:36 -0600 | 
| commit | 3f8fc34593414f6e35925038c38775203333b3f3 (patch) | |
| tree | b11c6c15246dbaa8f0cd1d382d6cb762196c2b1b /config/description.exs | |
| parent | e311c60923432f30fc4ab7bd37d338d60f40e25f (diff) | |
| parent | 50892a198d14a628c37139761b709cd5e3261a23 (diff) | |
| download | pleroma-3f8fc34593414f6e35925038c38775203333b3f3.tar.gz pleroma-3f8fc34593414f6e35925038c38775203333b3f3.zip | |
Merge remote-tracking branch 'origin/develop' into moderators
Diffstat (limited to 'config/description.exs')
| -rw-r--r-- | config/description.exs | 36 | 
1 files changed, 12 insertions, 24 deletions
| diff --git a/config/description.exs b/config/description.exs index 934a62a62..1c8c3b4a0 100644 --- a/config/description.exs +++ b/config/description.exs @@ -687,12 +687,14 @@ config :pleroma, :config_description, [        },        %{          key: :quarantined_instances, -        type: {:list, :string}, +        type: {:list, :tuple}, +        key_placeholder: "instance", +        value_placeholder: "reason",          description: -          "List of ActivityPub instances where private (DMs, followers-only) activities will not be sent", +          "List of ActivityPub instances where private (DMs, followers-only) activities will not be sent and the reason for doing so",          suggestions: [ -          "quarantined.com", -          "*.quarantined.com" +          {"quarantined.com", "Reason"}, +          {"*.quarantined.com", "Reason"}          ]        },        %{ @@ -1162,7 +1164,7 @@ config :pleroma, :config_description, [      type: :group,      description:        "This form can be used to configure a keyword list that keeps the configuration data for any " <> -        "kind of frontend. By default, settings for pleroma_fe and masto_fe are configured. If you want to " <> +        "kind of frontend. By default, settings for pleroma_fe are configured. If you want to " <>          "add your own configuration your settings all fields must be complete.",      children: [        %{ @@ -1362,25 +1364,6 @@ config :pleroma, :config_description, [              suggestions: ["pleroma-dark"]            }          ] -      }, -      %{ -        key: :masto_fe, -        label: "Masto FE", -        type: :map, -        description: "Settings for Masto FE", -        suggestions: [ -          %{ -            showInstanceSpecificPanel: true -          } -        ], -        children: [ -          %{ -            key: :showInstanceSpecificPanel, -            label: "Show instance specific panel", -            type: :boolean, -            description: "Whenether to show the instance's specific panel" -          } -        ]        }      ]    }, @@ -1688,6 +1671,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" | 
