Skip to content

Commit

Permalink
Merge pull request #158 from teamterning/develop
Browse files Browse the repository at this point in the history
[✨feat/#156] Discord 회원가입 알림 구현
  • Loading branch information
junggyo1020 authored Sep 28, 2024
2 parents 230522a + 1f4cb39 commit 4d47d1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void sendDiscordNotification(User user) {
Long totalMembers = userRepository.count();

// 알림 메시지 생성
String message = String.format("가입자명 : %s\n[%d] 번째 유저가 회원가입했습니다!", user.getName(), totalMembers);
String message = String.format("가입자명 : %s\n로그인방식: %s\n[%d] 번째 유저가 회원가입했습니다!", user.getName(), user.getAuthType(), totalMembers);

// HTTP 요청을 위한 헤더 설정
HttpHeaders headers = new HttpHeaders();
Expand Down

0 comments on commit 4d47d1d

Please sign in to comment.