Skip to content

Commit

Permalink
Merge pull request #184 from YAPP-19th/develop
Browse files Browse the repository at this point in the history
[#140] 슬랙 알림 메시지 수정, 리마인드 주기 설정 API 이슈 수정
  • Loading branch information
JuHyun419 authored Sep 20, 2022
2 parents 4c022f5 + 2335e14 commit a7cacf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ class AccountService(
folderService.createDefaultFolder(account)

val userCountMessage = """
${newAccount.id}: ${newAccount.name} 님이 회원가입을 진행하였습니다. 현재 회원 수: *`${accountRepository.count()}`*
*`${newAccount.name}`* 님이 회원가입을 진행하였습니다.
현재까지 총 회원 수는 *`${accountRepository.count()}`* 명 입니다.
""".trimIndent()

slackApi.sendSlackAlarmToVerbose(userCountMessage)
Expand Down Expand Up @@ -112,7 +113,8 @@ class AccountService(
log.info("${newAccount.email} account signUp succeed")

val userCountMessage = """
${newAccount.id}: ${newAccount.name} 님이 회원가입을 진행하였습니다. 현재 회원 수: *`${accountRepository.count()}`*
*`${newAccount.name}`* 님이 회원가입을 진행하였습니다.
현재까지 총 회원 수는 *`${accountRepository.count()}`* 명 입니다.
""".trimIndent()

slackApi.sendSlackAlarmToVerbose(userCountMessage)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ class RemindService(
val userId = jwtProvider.getIdFromToken(accessToken)
accountRepository.findByIdOrNull(userId)?.let {
it.remindCycle = request.remindCycle
accountRepository.save(it)
}
}

Expand Down

0 comments on commit a7cacf4

Please sign in to comment.