Skip to content

Commit

Permalink
[chore] 네이밍 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunihs committed Aug 31, 2023
1 parent 998cde6 commit 269e289
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ public RecruitmentDTO getRecruitment() {

@Operation(summary = "리크루팅 정보 보기")
@GetMapping
public UserRecruitmentDTO getOpenChatUrl() {
log.info("오픈채팅 링크");
return recruitmentService.getOpenChatUrl();
public UserRecruitmentDTO getUserRecruitment() {
log.info("리크루팅 정보 보기");
return recruitmentService.getUserRecruitment();
}

@Operation(summary = "리크루팅 정보 수정")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public RecruitmentDTO getRecruitment() {
return RecruitmentDTO.from(recruitment);
}

public UserRecruitmentDTO getOpenChatUrl() {
public UserRecruitmentDTO getUserRecruitment() {
Recruitment recruitment = recruitmentHelper.takeRecruitment();
return UserRecruitmentDTO.from(recruitment);
}
Expand Down

0 comments on commit 269e289

Please sign in to comment.