From d3daa83d68228557ad7db43e9a52a21af2f98620 Mon Sep 17 00:00:00 2001 From: julius Date: Tue, 25 Mar 2025 07:45:34 +0100 Subject: [PATCH] fix: /team -> /teams --- cutt/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cutt/main.py b/cutt/main.py index aa7095d..bd354ef 100644 --- a/cutt/main.py +++ b/cutt/main.py @@ -53,7 +53,7 @@ def list_teams(): team_router = APIRouter( - prefix="/team", + prefix="/teams", dependencies=[Security(get_current_active_user, scopes=["admin"])], tags=["team"], )