From abad3d4cf1e5f85c1fda63e4493be6f8826e6518 Mon Sep 17 00:00:00 2001 From: ddingmin Date: Sun, 7 Jul 2024 15:02:43 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=8A=A4=EC=9B=A8=EA=B1=B0=EC=97=90?= =?UTF-8?q?=20=EC=84=A4=EB=AA=85=20=EB=B3=B4=EC=B6=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../restapi/controller/SessionController.kt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/SessionController.kt b/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/SessionController.kt index 1ecaf8a..924e545 100644 --- a/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/SessionController.kt +++ b/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/SessionController.kt @@ -50,7 +50,11 @@ class SessionController( return CreateNewSessionResponse.fromDomain(session) } - @Operation(summary = "기수에 따른 모든 주차의 세션들 조회 요청", description = "기수에 따른 모든 주차의 세션들을 조회합니다.") + @Operation( + summary = "기수에 따른 모든 주차의 세션들 조회 요청", + description = "기수에 따른 모든 주차의 세션들을 조회합니다.\n" + + "일반 유저의 경우 위도, 경도가 0.0 으로 마스킹되어 반환됩니다." + ) @Parameter(name = "generation", description = "조회할 세션의 기수", example = "15") @GetMapping fun getSessions( @@ -70,7 +74,10 @@ class SessionController( ) } - @Operation(summary = "세션 정보 조회", description = "세션의 정보를 조회합니다.") + @Operation( + summary = "세션 정보 조회", description = "세션의 정보를 조회합니다.\n" + + "일반 유저의 경우 위도, 경도가 0.0 으로 마스킹되어 반환됩니다." + ) @GetMapping("/info") fun getInfoSession( authentication: Authentication,