diff --git a/API/app/contollers/teams_router.py b/API/app/contollers/teams_router.py index 23b961e..802c1e3 100644 --- a/API/app/contollers/teams_router.py +++ b/API/app/contollers/teams_router.py @@ -17,7 +17,7 @@ router = APIRouter() summary='Get all teams', description='Returns all teams', ) -async def create_team( +async def get_all_teams( db: AsyncSession = Depends(get_db), user=Depends(get_current_user), ):