Skip to content

Commit

Permalink
#61 [refactor] @PathVariable 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
parkheeddong committed Jan 11, 2024
1 parent e7b292f commit 57e862d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public SuccessResponse<MoimInfoResponse> getMoimInfo(
@GetMapping("/{moimId}/categoryList")
@Override
public SuccessResponse<CategoryListResponse> getCategoryList(
final Long moimId
@PathVariable final Long moimId
) {
return SuccessResponse.of(SuccessMessage.CATEGORY_LIST_SEARCH_SUCCESS, moimService.getCategoryList(moimId));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ SuccessResponse<MoimInfoResponse> getMoimInfo(
}
)
public SuccessResponse<CategoryListResponse> getCategoryList(
final Long moimId
@PathVariable final Long moimId
);
}

0 comments on commit 57e862d

Please sign in to comment.