Bump biography character limit to 512

This commit is contained in:
jvyden 2022-06-15 17:08:51 -04:00
parent 78307479f0
commit 492ce346b2
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -99,7 +99,7 @@ public class UserController : ControllerBase
if (update.Biography != null)
{
if (update.Biography.Length > 100) return this.BadRequest();
if (update.Biography.Length > 512) return this.BadRequest();
user.Biography = update.Biography;
}