Raise project limit on collections from 64 to 1024 (#847)

Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
This commit is contained in:
Emma Alexia
2024-01-11 10:27:38 -05:00
committed by GitHub
parent 05d2a96900
commit f16e93bd3a

View File

@@ -205,7 +205,7 @@ pub struct EditCollection {
)]
pub description: Option<Option<String>>,
pub status: Option<CollectionStatus>,
#[validate(length(max = 64))]
#[validate(length(max = 1024))]
pub new_projects: Option<Vec<String>>,
}