✏️ Capitalize tags

This commit is contained in:
Brian Wiborg 2025-09-30 15:39:11 +02:00
parent 4d8952eff7
commit 642359bdeb
No known key found for this signature in database

View file

@ -11,7 +11,7 @@ from pydantic import BaseModel
from ohmyapi.builtin.auth.models import Group, User from ohmyapi.builtin.auth.models import Group, User
# Router # Router
router = APIRouter(prefix="/auth", tags=["auth"]) router = APIRouter(prefix="/auth", tags=["Auth"])
# Secrets & config (should come from settings/env in real projects) # Secrets & config (should come from settings/env in real projects)
JWT_SECRET = getattr(settings, "JWT_SECRET", "changeme") JWT_SECRET = getattr(settings, "JWT_SECRET", "changeme")