From da88754e1411c35e385b334cef15f0af30630677 Mon Sep 17 00:00:00 2001 From: hskwon Date: Fri, 7 Nov 2025 02:55:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20CommonComponents.php=20=EC=A4=91?= =?UTF-8?q?=EB=B3=B5=20Swagger=20=EC=8A=A4=ED=82=A4=EB=A7=88=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - UserUpdateRequest, PasswordChangeRequest, SwitchTenantRequest 스키마 중복 제거 - UserApi.php에 정의된 더 상세한 버전 유지 - l5-swagger 생성 오류 해결 --- app/Swagger/v1/CommonComponents.php | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/app/Swagger/v1/CommonComponents.php b/app/Swagger/v1/CommonComponents.php index 1eaa9c0..b302724 100644 --- a/app/Swagger/v1/CommonComponents.php +++ b/app/Swagger/v1/CommonComponents.php @@ -78,31 +78,6 @@ * ) * * @OA\Schema( - * schema="UserUpdateRequest", - * type="object", - * - * @OA\Property(property="name", type="string", example="홍길동"), - * @OA\Property(property="phone", type="string", example="010-1111-2222") - * ) - * - * @OA\Schema( - * schema="PasswordChangeRequest", - * type="object", - * required={"current_password","new_password"}, - * - * @OA\Property(property="current_password", type="string", example="oldPass!234"), - * @OA\Property(property="new_password", type="string", example="NewPass!234") - * ) - * - * @OA\Schema( - * schema="SwitchTenantRequest", - * type="object", - * required={"tenant_id"}, - * - * @OA\Property(property="tenant_id", type="integer", example=2, description="스위치할 테넌트 ID") - * ) - * - * @OA\Schema( * schema="ErrorResponse", * type="object", * description="공통 에러 응답 포맷",