feat: add validation for username and password length in user creation
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed

This commit is contained in:
Mika Bomm 2025-04-03 14:20:06 +02:00
parent 4828b7e907
commit 304763fbf8

View file

@ -12,8 +12,10 @@ pub fn setup(cfg: &mut actix_web::web::ServiceConfig) {
#[derive(Deserialize, Validate)]
struct CreateUser {
#[validate(length(min = 4))]
username: String,
name: String,
#[validate(length(min = 8))]
password: String,
}