From c9b5cab0d682592332b40692b07ac0bf4c10004f Mon Sep 17 00:00:00 2001 From: counterweight Date: Sat, 20 Dec 2025 23:10:05 +0100 Subject: [PATCH] revert typo --- backend/schemas.py | 2 +- frontend/app/generated/api.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/schemas.py b/backend/schemas.py index 4319946..45b4551 100644 --- a/backend/schemas.py +++ b/backend/schemas.py @@ -19,7 +19,7 @@ class UserResponse(BaseModel): """Response model for authenticated user info.""" id: int email: str - guachachas: list[str] + roles: list[str] permissions: list[str] diff --git a/frontend/app/generated/api.ts b/frontend/app/generated/api.ts index 1c5796e..512ed25 100644 --- a/frontend/app/generated/api.ts +++ b/frontend/app/generated/api.ts @@ -601,8 +601,8 @@ export interface components { id: number; /** Email */ email: string; - /** Guachachas */ - guachachas: string[]; + /** Roles */ + roles: string[]; /** Permissions */ permissions: string[]; };