Skip to content

Commit

Permalink
add: cancelPending 주석 추가
Browse files Browse the repository at this point in the history
Signed-off-by: Namgyu11 <[email protected]>
  • Loading branch information
Namgyu11 committed Aug 27, 2024
1 parent 9864265 commit 3f8ed14
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public PendingResponse acceptPending(Long memberId, Long accompanyPostId) {
/**
* 사용자의 동행 신청을 거절합니다.
* <p>
* - 신청 상태를 REJECTED로 변경합니다.
* 신청 상태를 REJECTED로 변경합니다.
*
* @param memberId 거절할 사용자의 ID
* @param accompanyPostId 신청한 게시물의 ID
Expand All @@ -238,7 +238,15 @@ public PendingResponse rejectPending(Long memberId, Long accompanyPostId) {
.build();
}

// 신청자가 해당 신청을 취소한다면 다시 신청 가능

/**
* 사용자가 자신이 신청한 동행 신청을 취소 . 사용자가 현재 PENDING 상태인 동행 신청을 취소하고, 상태를 DEFAULT 로 변경. 상태가 PENDING 이 아닌 경우, 예외를 발생.
*
* @param memberId 신청을 취소할 사용자의 ID
* @param accompanyPostId 신청을 취소할 게시물의 ID
* @return PendingResponse 신청 취소 후의 상태를 반환하는 객체 (DEFAULT 상태)
* @throws GlobalException 신청 상태를 찾을 수 없거나, 상태가 PENDING 이 아닌 경우 예외 발생
*/
@Override
public PendingResponse cancelPending(Long memberId, Long accompanyPostId) {
MemberEntity member = getMember(memberId);
Expand All @@ -260,6 +268,7 @@ public PendingResponse cancelPending(Long memberId, Long accompanyPostId) {
.build();
}


/**
* 이메일을 통해 MemberEntity 를 조회합니다.
*
Expand Down

0 comments on commit 3f8ed14

Please sign in to comment.