Skip to content

Commit

Permalink
Merge pull request #180 from survey-mate/hotfix/178
Browse files Browse the repository at this point in the history
이화여대 도메인 추가 + 회원가입 축하 포인트 100으로 수정
  • Loading branch information
mingmingmon authored Feb 18, 2024
2 parents d25dc04 + 43b8b16 commit cd5e8fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public AuthControllerDTO.MemberResponseDTO join(AuthServiceDTO.MemberDTO dto) {
.EarnPointDTO
.builder()
.description("회원가입 축하 포인트")
.amount(20L)
.amount(100L)
.build();

statementService.earnPoint(member, earnPointDTO);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void setIsStudent(boolean isStudent) {
}

public void setIsStudent(String emailAddress) {
if (emailAddress.matches(".*\\.(ac\\.kr|edu)$")) {
if (emailAddress.matches(".*\\.(ac\\.kr|edu)$") || emailAddress.matches(".*@(ewhain\\.net)")) {
this.setIsStudent(true);
} else {
this.setIsStudent(false);
Expand Down

0 comments on commit cd5e8fc

Please sign in to comment.