From ccdaf96510509534028c91dc50fca8bd060e782e Mon Sep 17 00:00:00 2001 From: Artem Date: Mon, 19 May 2025 17:54:19 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=A3=D0=B2=D0=B5=D0=BB=D0=B8=D1=87?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20=D0=BC=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=D0=B0?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D1=83=D1=8E=20=D0=B4=D0=BB=D0=B8=D0=BD=D1=83?= =?UTF-8?q?=20=D0=B8=D0=BC=D0=B5=D0=BD=D0=B8=20=D0=BF=D0=BE=D0=BB=D1=8C?= =?UTF-8?q?=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8F=20=D0=B4=D0=BE?= =?UTF-8?q?=2036=20=D1=81=D0=B8=D0=BC=D0=B2=D0=BE=D0=BB=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=B2=20CreateUserRequestDto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- remnawave_api/models/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remnawave_api/models/users.py b/remnawave_api/models/users.py index ae64fa8..2c8ba09 100644 --- a/remnawave_api/models/users.py +++ b/remnawave_api/models/users.py @@ -28,7 +28,7 @@ class HappCrypto(BaseModel): class CreateUserRequestDto(BaseModel): username: Annotated[ - str, StringConstraints(pattern=r"^[a-zA-Z0-9_-]+$", min_length=6, max_length=34) + str, StringConstraints(pattern=r"^[a-zA-Z0-9_-]+$", min_length=6, max_length=36) ] status: Optional[UserStatus] = None subscription_uuid: Optional[str] = Field(