Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
Raise project limit on collections from 64 to 1024 (#847)
Browse files Browse the repository at this point in the history
Co-authored-by: Geometrically <[email protected]>
  • Loading branch information
triphora and Geometrically authored Jan 11, 2024
1 parent 05d2a96 commit f16e93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/v3/collections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>>,
}

Expand Down

0 comments on commit f16e93b

Please sign in to comment.