Skip to content

Commit

Permalink
ADD :: 리뷰 반영 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yunyeong-Ko committed Mar 18, 2023
1 parent 3486136 commit addf838
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ public void updateApplication(
updateApplicationService.execute(id, request);
}

@DeleteMapping("/{id}")
public void deleteApplication(@PathVariable Long id) {
deleteApplicationService.execute(id);
}

@PutMapping("/{id}/close")
public void closeApplication(@PathVariable Long id) {
closeApplicationService.execute(id);
}

@DeleteMapping("/{id}")
public void deleteApplication(@PathVariable Long id) {
deleteApplicationService.execute(id);
}
}

0 comments on commit addf838

Please sign in to comment.