-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: PersonalInfo 테이블 추가 * feat: 탈퇴 로직 변경 * feat: 탈퇴 스케줄링 설정 * refactor: Welcome 메시지 변경 * refactor: 기본 프로필 설정 및 테스트 수정 * feat: 어드민 로그인 개발 * feat: BadCredentialsException 추가 및 url 설정 * refactor: 기본 데이터 변경 * chore: config 업데이트 * test: user 테스트 수정 * refactor: 익셉션 수정 * test: 테스트 수정 * refactor: 알림 설정 request 변경 * refactor: data.sql 변경 (색상 변경)
- Loading branch information
Showing
39 changed files
with
828 additions
and
1,927 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
app/src/main/kotlin/com/wespot/auth/schedule/UserWithdrawalScheduler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.wespot.auth.schedule | ||
|
||
import com.wespot.message.port.`in`.SchedulerUserWithdrawalUseCase | ||
import org.springframework.scheduling.annotation.Scheduled | ||
import org.springframework.stereotype.Service | ||
|
||
@Service | ||
class UserWithdrawalScheduler( | ||
private val schedulerUserWithdrawalUseCase: SchedulerUserWithdrawalUseCase | ||
) { | ||
|
||
@Scheduled(cron = "0 0 0 * * ?") // 매일 자정에 실행 | ||
fun completeUserWithdrawals() { | ||
schedulerUserWithdrawalUseCase.completeUserWithdrawals() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule config
updated
from 138e9c to adc9aa
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.