diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-09-16 21:48:01 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-09-16 21:48:01 +0700 |
commit | d6ab78e610f16e97246ec9e83b3db72f04cf41e7 (patch) | |
tree | fb1ff83b8fb8c0f6bebc0c90dd40c855e4eac798 /config/description.exs | |
parent | 409e701ab849475c81073d80a973487d67cadaae (diff) | |
download | pleroma-d6ab78e610f16e97246ec9e83b3db72f04cf41e7.tar.gz pleroma-d6ab78e610f16e97246ec9e83b3db72f04cf41e7.zip |
Set `account_field_value_length` limit to 2048 by default
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/description.exs b/config/description.exs index be5eb0cc3..32d36d6d6 100644 --- a/config/description.exs +++ b/config/description.exs @@ -878,9 +878,9 @@ config :pleroma, :config_description, [ %{ key: :account_field_value_length, type: :integer, - description: "An account field value maximum length (default: 512)", + description: "An account field value maximum length (default: 2048)", suggestions: [ - 512 + 2048 ] }, %{ |