diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-08-01 15:53:37 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-08-01 15:53:37 +0700 |
commit | 9ca45063556f3b75860d516577776a00536e90a8 (patch) | |
tree | 672d0df56960ef191e3430642b597a36459de1f4 /config | |
parent | cdfd02e90455fe7c01026efb48af3194cc82252b (diff) | |
download | pleroma-9ca45063556f3b75860d516577776a00536e90a8.tar.gz pleroma-9ca45063556f3b75860d516577776a00536e90a8.zip |
Add configurable length limits for `User.bio` and `User.name`
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 17770640a..aa4cdf409 100644 --- a/config/config.exs +++ b/config/config.exs @@ -253,6 +253,8 @@ config :pleroma, :instance, skip_thread_containment: true, limit_to_local_content: :unauthenticated, dynamic_configuration: false, + user_bio_length: 5000, + user_name_length: 100, external_user_synchronization: true config :pleroma, :markup, |