diff options
| author | lain <lain@soykaf.club> | 2020-08-04 15:28:41 +0200 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-08-04 15:28:41 +0200 |
| commit | 878c7f3f309aa5aaa9eababc2c863248dd4420bb (patch) | |
| tree | e2c76471b95ee9460989aeedf4ebfa4843b11cba /config/description.exs | |
| parent | 0f088d8ce35150d7baa0591a25c831fce0181239 (diff) | |
| parent | 28584bb2241c600fc6150fdae49b1eea6bd420e0 (diff) | |
| download | pleroma-878c7f3f309aa5aaa9eababc2c863248dd4420bb.tar.gz pleroma-878c7f3f309aa5aaa9eababc2c863248dd4420bb.zip | |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into features/poll-validation
Diffstat (limited to 'config/description.exs')
| -rw-r--r-- | config/description.exs | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 30a503696..d823812fb 100644 --- a/config/description.exs +++ b/config/description.exs @@ -955,6 +955,11 @@ config :pleroma, :config_description, [ description: "The instance thumbnail can be any image that represents your instance and is used by some apps or services when they display information about your instance.", suggestions: ["/instance/thumbnail.jpeg"] + }, + %{ + key: :show_reactions, + type: :boolean, + description: "Let favourites and emoji reactions be viewed through the API." } ] }, @@ -993,6 +998,35 @@ config :pleroma, :config_description, [ ] }, %{ + group: :chat_message, + type: :group, + descpiption: "Chat message settings", + children: [ + %{ + key: :enabled, + type: :boolean, + description: "Enables sends chat message for new user after registration" + }, + %{ + key: :message, + type: :string, + description: + "A message that will be sent to a newly registered users as a chat message", + suggestions: [ + "Hello, welcome on board!" + ] + }, + %{ + key: :sender_nickname, + type: :string, + description: "The nickname of the local user that sends the welcome message", + suggestions: [ + "lain" + ] + } + ] + }, + %{ group: :email, type: :group, descpiption: "Email message settings", @@ -1538,6 +1572,12 @@ config :pleroma, :config_description, [ suggestions: ["example.com", "*.example.com"] }, %{ + key: :followers_only, + type: {:list, :string}, + description: "Force posts from the given instances to be visible by followers only", + suggestions: ["example.com", "*.example.com"] + }, + %{ key: :report_removal, type: {:list, :string}, description: "List of instances to reject reports from", @@ -3016,6 +3056,7 @@ config :pleroma, :config_description, [ %{ key: :restricted_nicknames, type: {:list, :string}, + description: "List of nicknames users may not register with.", suggestions: [ ".well-known", "~", @@ -3048,6 +3089,12 @@ config :pleroma, :config_description, [ "users", "web" ] + }, + %{ + key: :email_blacklist, + type: {:list, :string}, + description: "List of email domains users may not register with.", + suggestions: ["mailinator.com", "maildrop.cc"] } ] }, |
