Add :registration_reason_length to description.exs
authorAlex Gleason <alex@alexgleason.me>
Mon, 27 Jul 2020 20:24:20 +0000 (15:24 -0500)
committerAlex Gleason <alex@alexgleason.me>
Mon, 27 Jul 2020 20:24:20 +0000 (15:24 -0500)
config/description.exs
docs/configuration/cheatsheet.md

index 509effbc3c9a5ef89d45bc0067b286244b606631..df9f256ef6854199e2d886bf411656f6afb826ed 100644 (file)
@@ -879,6 +879,14 @@ config :pleroma, :config_description, [
           2048
         ]
       },
+      %{
+        key: :registration_reason_length,
+        type: :integer,
+        description: "Maximum registration reason length. Default: 500.",
+        suggestions: [
+          500
+        ]
+      },
       %{
         key: :external_user_synchronization,
         type: :boolean,
index 5cf0732939d6a120e63f167f71528ea6df75fb11..c89df24cc9b6e3a6df4d820f4597644a6ebda3b2 100644 (file)
@@ -59,6 +59,7 @@ To add configuration to your config file, you can copy it from the base config.
 * `max_remote_account_fields`: The maximum number of custom fields in the remote user profile (default: `20`).
 * `account_field_name_length`: An account field name maximum length (default: `512`).
 * `account_field_value_length`: An account field value maximum length (default: `2048`).
+* `registration_reason_length`: Maximum registration reason length (default: `500`).
 * `external_user_synchronization`: Enabling following/followers counters synchronization for external users.
 * `cleanup_attachments`: Remove attachments along with statuses. Does not affect duplicate files and attachments without status. Enabling this will increase load to database when deleting statuses on larger instances.