We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
상황:
학생 A와 B가 있다고 하자. 두 학생은 같은 그룹에 배정되기 위해 스터디를 신청할 때 서로를 선택하여 신청하였다. 이때 A가 B에게 먼저 신청했고(A->B), 이후에 B가 A에게 신청하였다(B->A).
기대결과:
B가 A를 같이 공부할 친구로 선택하여 신청할 때 두 신청 상태는 ACCEPTED 되어야 한다.
ACCEPTED
현재상태:
A -> B에 대한 신청 상태는 ACCEPTED 이지만 B -> A에 대한 신청 상태는 변경되지 않았다. 즉 서로를 선택해서 신청하더라도 뒤늦게 신청한 사람의 신청 상태는 바뀌지 않는다.
A -> B
B -> A
The text was updated successfully, but these errors were encountered:
fix: 뒤늦게 신청한 상대의 친구 선택 상태가 변경되지 않는 버그 수정 (#153)
7c0bcbd
fix: 그룹 인원 변동시 빈 그룹 삭제가 되지 않는 버그 수정 (#153)
e88a494
When branches are created from issues, their pull requests are automatically linked.
상황:
학생 A와 B가 있다고 하자.
두 학생은 같은 그룹에 배정되기 위해 스터디를 신청할 때 서로를 선택하여 신청하였다.
이때 A가 B에게 먼저 신청했고(A->B), 이후에 B가 A에게 신청하였다(B->A).
기대결과:
B가 A를 같이 공부할 친구로 선택하여 신청할 때 두 신청 상태는
ACCEPTED
되어야 한다.현재상태:
A -> B
에 대한 신청 상태는ACCEPTED
이지만B -> A
에 대한 신청 상태는 변경되지 않았다. 즉 서로를 선택해서 신청하더라도 뒤늦게 신청한 사람의 신청 상태는 바뀌지 않는다.The text was updated successfully, but these errors were encountered: