Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@

@Tag(name = "Recruit Board Search API", description = "봉사 활동 모집 검색 관련 API")
@RequiredArgsConstructor
@RequestMapping("/api_v1")
@RequestMapping("/api/v1")
@RestController
public class RecruitBoardSearchApiController {

private final RecruitBoardQueryUseCase recruitBoardQueryUseCase;
private final RecruitBoardDocumentUseCase recruitBoardDocumentUseCase;

@GetMapping("/recruit-boards/search")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void getAllBySearch() throws Exception {

// when
// then
mockMvc.perform(get("/api_v1/recruit-boards/search")
mockMvc.perform(get("/api/v1/recruit-boards/search")
.param("keyword", "volunteer")
.param("category", ADMINISTRATIVE_SUPPORT.name())
.accept(MediaType.APPLICATION_JSON))
Expand All @@ -68,7 +68,7 @@ void getNearby() throws Exception {

// when
// then
mockMvc.perform(get("/api_v1/recruit-boards/nearby")
mockMvc.perform(get("/api/v1/recruit-boards/nearby")
.param("latitude", "37.5665")
.param("longitude", "126.9780")
.param("radius", "10")
Expand Down
Loading