feat: update bio length validation in UpdateUserParams to allow up to 4000 characters
This commit is contained in:
@@ -17,7 +17,7 @@ pub struct UpdateUserParams {
|
|||||||
#[serde(rename = "displayName")]
|
#[serde(rename = "displayName")]
|
||||||
pub display_name: Option<String>,
|
pub display_name: Option<String>,
|
||||||
|
|
||||||
#[validate(length(max = 160))]
|
#[validate(length(max = 4000))]
|
||||||
#[schema(example = "Est. 2004")]
|
#[schema(example = "Est. 2004")]
|
||||||
pub bio: Option<String>,
|
pub bio: Option<String>,
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user