Skip to content

Commit

Permalink
[#140] refactor: 회원가입 알림 문구 수정 및 리마인드 주기 설정 API save 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JuHyun419 committed Sep 18, 2022
1 parent 2a55e7d commit addd278
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 addd278

Please sign in to comment.