Skip to content

Commit

Permalink
fix: Change user_id type from UUID to str
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradip-p committed Sep 9, 2024
1 parent f8b4724 commit ac60f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/app/projects/project_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ async def one(db: Connection, project_id: uuid.UUID):

async def all(
db: Connection,
user_id: Optional[uuid.UUID] = None,
user_id: Optional[str] = None,
skip: int = 0,
limit: int = 100,
):
Expand Down

0 comments on commit ac60f2b

Please sign in to comment.