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:
parent
05d2a96900
commit
f16e93bd3a
@ -205,7 +205,7 @@ pub struct EditCollection {
|
|||||||
)]
|
)]
|
||||||
pub description: Option<Option<String>>,
|
pub description: Option<Option<String>>,
|
||||||
pub status: Option<CollectionStatus>,
|
pub status: Option<CollectionStatus>,
|
||||||
#[validate(length(max = 64))]
|
#[validate(length(max = 1024))]
|
||||||
pub new_projects: Option<Vec<String>>,
|
pub new_projects: Option<Vec<String>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user