From f16e93bd3a3ef7ae0d992c35d0f4fb67cdb51155 Mon Sep 17 00:00:00 2001 From: Emma Alexia Date: Thu, 11 Jan 2024 10:27:38 -0500 Subject: [PATCH] Raise project limit on collections from 64 to 1024 (#847) Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com> --- src/routes/v3/collections.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/v3/collections.rs b/src/routes/v3/collections.rs index 51425a60..473e47df 100644 --- a/src/routes/v3/collections.rs +++ b/src/routes/v3/collections.rs @@ -205,7 +205,7 @@ pub struct EditCollection { )] pub description: Option>, pub status: Option, - #[validate(length(max = 64))] + #[validate(length(max = 1024))] pub new_projects: Option>, }