From 94e1c755a0ad764c6976f27a0f77c80958894e01 Mon Sep 17 00:00:00 2001 From: andrei Date: Sun, 27 Apr 2025 23:54:39 +0500 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BD=D0=B0=D0=B7=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8=20get=5Fall=5Fteams?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- API/app/contollers/teams_router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), ):