Skip to content

Commit

Permalink
Merge pull request #41 from GPGT-Algorithm-Study/develop
Browse files Browse the repository at this point in the history
오타와 잘못된 알림 수정을 위한 배포
  • Loading branch information
fing9 authored May 27, 2024
2 parents ce02812 + daf27fc commit 09061bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public Board save(String type, String bojHandle, String title, String content, I

// 만약 공지라면 전체 유저에게 알림을 발행한다.
if (type.equals("notice")) {
notifyService.systemPublishToAll("📣 새로운 공지가 등록되었습니다. 확인해 보세요! [" + board.getTitle() + "]",
notifyService.systemPublishToAll("📣 새로운 공지가 등록되었습니다. 확인해보세요! [" + board.getTitle() + "]",
NotifyType.NOTICE, board.getId());
}

Expand Down Expand Up @@ -105,7 +105,7 @@ public Board update(Long boardId, String type, String bojHandle, String title, S

// 만약 공지라면 전체 유저에게 알림을 발행한다.
if (type.equals("notice")) {
notifyService.systemPublishToAll("📣 공지에 변화가 있습니다. 확인해 보세요! [" + board.getTitle() + "]",
notifyService.systemPublishToAll("📣 공지에 변화가 있습니다. 확인해보세요! [" + board.getTitle() + "]",
NotifyType.NOTICE, board.getId());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,10 @@ public void checkAllUserSolvedStreak() throws JsonProcessingException {
+ "[" + (user.getWarning() - 1) + "->" + user.getWarning() + "]", true);
}
// 스트릭 끊김을 알리는 알림을 발행한다.
notifyService.systemPublish(user.getBojHandle(), "문제를 풀지 않아, 경고가 부여됐습니다.",
NotifyType.SYSTEM, null);
if (user.getWarning() < 4) {
notifyService.systemPublish(user.getBojHandle(), "문제를 풀지 않아, 경고가 부여됐습니다.",
NotifyType.SYSTEM, null);
}

userRepository.save(user);
} else {
Expand Down

0 comments on commit 09061bb

Please sign in to comment.