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,