From 2ca7f7e14faf5f3df30e1ff93bb4edc59693d607 Mon Sep 17 00:00:00 2001 From: Daybreak312 Date: Thu, 20 Jun 2024 23:32:58 +0900 Subject: [PATCH] ANNO :: API Docs.. --- .../maeumgagym/presentation/controller/user/UserController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt b/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt index 4cda7cf2..79a48c8c 100644 --- a/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt +++ b/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt @@ -34,7 +34,7 @@ private class UserController( nickname: String? ): UserProfileResponse = readUserProfileFromNicknameUseCase.profileFromNickname(nickname!!) - @Operation(summary = "현재 로그인한 유저 프로필 보기 API") + @Operation(summary = "현재 로그인한 유저 프로필 조회 API") @RequireAuthentication @GetMapping fun getCurrentUserProfile(): UserProfileResponse = readCurrentUserProfileUseCase.readCurrentUserProfile()