From 4a32ed921a989aec65a1a68e2d6579cbda34060a Mon Sep 17 00:00:00 2001 From: Zhi Date: Thu, 12 Mar 2026 12:27:38 +0000 Subject: [PATCH] fix: remove project_id from ProjectMemberBase schema --- app/schemas/schemas.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/schemas/schemas.py b/app/schemas/schemas.py index 12020ce..5d6dd10 100644 --- a/app/schemas/schemas.py +++ b/app/schemas/schemas.py @@ -182,7 +182,6 @@ class UserResponse(UserBase): # Project Member schemas class ProjectMemberBase(BaseModel): user_id: int - project_id: int role: str = "dev"