Skip to content

Commit

Permalink
[BE/#34] Feat : 마일스톤 업데이트 로직 추가
Browse files Browse the repository at this point in the history
- issueService.updateRelatedMilestone()
  • Loading branch information
MuseopKim committed Jun 15, 2020
1 parent 10925f2 commit 4c4ba58
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,9 @@ private void addAttachedLabelId(Long issueId, Integer labelId) {
private void deleteAttachedLabelId(Long issueId, Integer labelId) {
issueDao.deleteAttachedLabelId(issueId, labelId);
}

public String updateRelatedMilestone(Long issueId, UpdateMilestoneRequestDto updateMilestoneRequestDto) {
issueDao.updateRelatedMilestone(issueId, updateMilestoneRequestDto.getMilestoneId());
return ResponseMessages.SUCCESSFULLY_MODIFIED;
}
}

0 comments on commit 4c4ba58

Please sign in to comment.