From 580fe5e4870b93c522b2d92bf31e3ec32275bc71 Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Sat, 12 Apr 2025 00:08:52 +0330 Subject: [PATCH] Update User Info Response Added more details UserInfoResponse class --- core/scripts/webpanel/routers/api/v1/schema/user.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/scripts/webpanel/routers/api/v1/schema/user.py b/core/scripts/webpanel/routers/api/v1/schema/user.py index 7b47b82..9afe538 100644 --- a/core/scripts/webpanel/routers/api/v1/schema/user.py +++ b/core/scripts/webpanel/routers/api/v1/schema/user.py @@ -12,6 +12,9 @@ class UserInfoResponse(BaseModel): expiration_days: int account_creation_date: str blocked: bool + status: str + upload_bytes: int + download_bytes: int class UserListResponse(RootModel): # type: ignore