mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-14 13:52:28 +00:00
Bump biography character limit to 512
This commit is contained in:
parent
78307479f0
commit
492ce346b2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue