Skip to content

Commit

Permalink
#109 [fix] public 함수 private 으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hellozo0 committed Jan 12, 2024
1 parent d2787e3 commit ecd957f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -224,7 +224,7 @@ public OpenChatResponse getOpenChatInfo(Long userId, Long offerId) {
return openChatResponse;
}

public void updateOfferAgreeStatus(Long offerId){
private void updateOfferAgreeStatus(Long offerId){
HairServiceOffer hairServiceOffer = hairServiceOfferJpaRepository.findById(offerId).orElseThrow(() -> new NotFoundException(ErrorCode.NOT_FOUND_OFFER_EXCEPTION));

hairServiceOffer.setIsModelAgree(true);

0 comments on commit ecd957f

Please sign in to comment.