From 642359bdebb69efe70a80cd0bdba0f88463c88ef Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Tue, 30 Sep 2025 15:39:11 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Capitalize=20tags?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ohmyapi/builtin/auth/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ohmyapi/builtin/auth/routes.py b/src/ohmyapi/builtin/auth/routes.py index 27b8193..8a81389 100644 --- a/src/ohmyapi/builtin/auth/routes.py +++ b/src/ohmyapi/builtin/auth/routes.py @@ -11,7 +11,7 @@ from pydantic import BaseModel from ohmyapi.builtin.auth.models import Group, User # Router -router = APIRouter(prefix="/auth", tags=["auth"]) +router = APIRouter(prefix="/auth", tags=["Auth"]) # Secrets & config (should come from settings/env in real projects) JWT_SECRET = getattr(settings, "JWT_SECRET", "changeme")