Add groupManager;

reduce cardmanager to creating and deleting for now;
fix typo
This commit is contained in:
2026-04-24 16:24:37 +02:00
parent 2de444c8b0
commit f96894db8c
5 changed files with 74 additions and 42 deletions

View File

@@ -5,7 +5,7 @@ from typing import List
from ..model.models import UserResponse, UserCreate, UserDB, UserUpdate
from ..services.database import engine
user_router = APIRouter(tags=["users"])
user_router = APIRouter(tags=["Users"])
def get_session():
with Session(engine) as db: