Skip to content

Commit

Permalink
docs: 도메인 로직에 쿼리 조건 메서드 레퍼런스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
uwoobeat committed Mar 6, 2024
1 parent cbae345 commit 8799841
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,11 @@ public boolean isGranted() {
return role.equals(USER) || role.equals(MemberRole.ADMIN);
}

/**
* 회원 승인 가능 여부를 반환합니다.
*
* @see com.gdschongik.gdsc.domain.member.dao.MemberQueryMethod#isGrantAvailable()
*/
public boolean isGrantAvailable() {
try {
validateGrantAvailable();
Expand Down

0 comments on commit 8799841

Please sign in to comment.