chore: update len limit for workspace namespace

This commit is contained in:
Zack Fu Zi Xiang 2024-07-02 09:50:42 +08:00
parent 885c1a6393
commit 00238d11c4
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ async fn check_workspace_namespace(new_namespace: &str) -> Result<(), AppError>
));
}
if new_namespace.len() > 32 {
if new_namespace.len() > 64 {
return Err(AppError::InvalidRequest(
"Namespace must be at most 32 characters long".to_string(),
));