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

이화여대 도메인 추가 + 회원가입 축하 포인트 100으로 수정 #180

Merged
merged 2 commits into from
Feb 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading