Skip to content

Commit

Permalink
fix : social 속성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
GimHaLim committed Jul 27, 2024
1 parent b91b44e commit 2252dfc
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public void signupMember(SignupDto signupDto) {
.email(signupDto.getEmail())
.password(passwordEncoder.encode(signupDto.getPassword()))
.nickName(signupDto.getNickname())
.social(false)
.point(0L)
.build();

Expand Down Expand Up @@ -247,8 +248,8 @@ public void sendEmailForCertification(Long userId) throws MessagingException {
// 비밀번호 생성
String certificationNumber = makeTempPassword();

String img = "<img src='http://www.plcik.shop/plick_logo.png' alt='Plick Logo'>";
String link = "<a href='http://d2vr7xh1eokzzb.cloudfront.net/Login'>로그인 링크</a>";
String img = "<img src='https://popup-img.s3.ap-northeast-2.amazonaws.com/plick_logo.png' alt='Plick Logo'>";
String link = "<a href='http://www.plick.shop/Login'>로그인 링크</a>";

String content = String.format("%s <br> 임시비밀번호: %s <br><br> %s <br> 로그인 후 마이페이지에서 비밀번호를 수정해주세요.",
img,
Expand Down

0 comments on commit 2252dfc

Please sign in to comment.