Skip to content

Commit

Permalink
feat(#14) : mainpage api
Browse files Browse the repository at this point in the history
  • Loading branch information
eojinny committed Nov 16, 2023
1 parent 46bf2cf commit 876c308
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class IssueController {
private final IssueService issueService;

@GetMapping("/keyword/issue/{issueId}")
@GetMapping("/issue/{issueId}")
public ResponseEntity<SuccessResponse<IssueRes>> getIssueById(@PathVariable Long issueId) {
return ResponseEntity.ok(SuccessResponse.create(IssueResponseMessage.GET_ISSUE_SUCCESS.getMessage(),this.issueService.findIssueAndTopicById(issueId) ));

Expand Down

0 comments on commit 876c308

Please sign in to comment.