Skip to content

Commit

Permalink
feat : 지인 이름 내림차순 조회 API 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
seongHyun-Min committed Sep 22, 2023
1 parent 9c00b27 commit 8dc2a4a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ public ResponseEntity<GetAllAcEventsResponseDto> getAllAcEvents() {
);
}

@GetMapping("/acquaintance/name")
public ResponseEntity<GetAllAcNicknameResponseDto> getAllAcName(){
return new ResponseEntity<>(this.eventService.getAcName(), HttpStatus.OK);
}

// 지인 경조사 업데이트
@PatchMapping("/acquaintance/{id}")
public ResponseEntity<Long> updateAcEvents(
Expand Down

0 comments on commit 8dc2a4a

Please sign in to comment.