Skip to content

Commit

Permalink
chore: 스웨거에 설명 보충
Browse files Browse the repository at this point in the history
  • Loading branch information
ddingmin committed Jul 7, 2024
1 parent b1ef59c commit abad3d4
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -70,7 +74,10 @@ class SessionController(
)
}

@Operation(summary = "세션 정보 조회", description = "세션의 정보를 조회합니다.")
@Operation(
summary = "세션 정보 조회", description = "세션의 정보를 조회합니다.\n" +
"일반 유저의 경우 위도, 경도가 0.0 으로 마스킹되어 반환됩니다."
)
@GetMapping("/info")
fun getInfoSession(
authentication: Authentication,
Expand Down

0 comments on commit abad3d4

Please sign in to comment.