Skip to content

Commit

Permalink
fix(project): allow users to view project cards without login (#1902)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuj-Gupta4 authored Nov 19, 2024
1 parent 2d05a15 commit b84829f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/backend/app/projects/project_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ async def get_tasks_near_me(

@router.get("/summaries", response_model=project_schemas.PaginatedProjectSummaries)
async def read_project_summaries(
current_user: Annotated[AuthUser, Depends(login_required)],
db: Annotated[Connection, Depends(db_conn)],
page: int = Query(1, ge=1), # Default to page 1, must be greater than or equal to 1
results_per_page: int = Query(13, le=100),
Expand Down

0 comments on commit b84829f

Please sign in to comment.