From 7e147ee608d6f2b408f2c0234a3a4dbe62d0eb15 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Sun, 15 Feb 2026 02:32:05 +0530 Subject: [PATCH] feat(api): add auth tag for authentication bootstrap endpoints in OpenAPI specification --- backend/app/main.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/app/main.py b/backend/app/main.py index 70119db..264c6a1 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -41,6 +41,12 @@ if TYPE_CHECKING: configure_logging() logger = get_logger(__name__) OPENAPI_TAGS = [ + { + "name": "auth", + "description": ( + "Authentication bootstrap endpoints for resolving caller identity and session context." + ), + }, { "name": "health", "description": (