Align local bio limits to remote limit.

This commit is contained in:
lain 2018-04-25 15:41:59 +02:00
parent d4a54a90c9
commit 279b1d19f0
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ defmodule Pleroma.User do
|> cast(params, [:bio, :name])
|> unique_constraint(:nickname)
|> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
|> validate_length(:bio, max: 1000)
|> validate_length(:bio, max: 5000)
|> validate_length(:name, min: 1, max: 100)
end