From 3b08c269089470e5b109940b073bd33c41bd80b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=ED=97=8C?= Date: Tue, 7 Jul 2026 15:14:46 +0900 Subject: [PATCH] =?UTF-8?q?docs(auth):=20protocol=20Field=20=EC=84=A4?= =?UTF-8?q?=EB=AA=85=20=EB=B3=B4=EA=B0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Res_CreateAccount.su_id 등 빈 Field 에 description 추가 → Swagger 노출. Co-Authored-By: Claude Fable 5 --- backend/router/v1/auth/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/router/v1/auth/protocol.py b/backend/router/v1/auth/protocol.py index 3bce56f..d642957 100644 --- a/backend/router/v1/auth/protocol.py +++ b/backend/router/v1/auth/protocol.py @@ -34,7 +34,7 @@ class Req_CreateAccount(AuthProtocol): class Res_CreateAccount(Res_WebPacketProtocol): - su_id: str = "" + su_id: str = Field("", description="생성된 유저 식별자(uuid)") class Res_RefreshToken(Res_WebPacketProtocol):