Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 참여했던 방이 종료되면 참여 중 탭에서 제거(#581) #584

Merged
merged 8 commits into from
Oct 12, 2024
Prev Previous commit
Next Next commit
Merge branch 'develop' into feat/#581
  • Loading branch information
ashsty authored Oct 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a4965e38d4815b86d18c2e0bd023a9fb3c0b5008
Original file line number Diff line number Diff line change
@@ -81,4 +81,20 @@ public long getMembersId() {
public String getMemberGithubId() {
return member.getGithubUserId();
}

public boolean isReviewer() {
return memberRole.isReviewer();
}

public boolean isNotReviewer() {
return !isReviewer();
}

public boolean isPullRequestNotSubmitted() {
return status.isPullRequestNotSubmitted();
}

private static void debug(long roomId, long memberId) {
log.debug("참가자 생성[방 ID={}, 멤버 ID={}", roomId, memberId);
}
}
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.