Skip to content

Commit

Permalink
refactor: url parameter 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackBean99 committed Jul 19, 2023
1 parent 2e54076 commit 2eb840c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class PromiseUserController(
}

@Operation(summary = "약속 id로 약속 유저(promiseUser) 조회", description = "약속ID 로 약속 유저를 조회합니다.")
@GetMapping("/promises/{promiseId}/users")
@GetMapping("/promises/{promise-id}/users")
fun getPromiseUser(@PathVariable("promise-id") promiseId: Long): List<PromiseUserDto> {
return promiseUserReadUseCase.findByPromiseId(promiseId)
}
Expand Down

0 comments on commit 2eb840c

Please sign in to comment.