test #257

Merged
klaus merged 15 commits from test into main 2025-02-09 13:36:21 +00:00
1 changed files with 1 additions and 3 deletions
Showing only changes of commit 1b782f3df8 - Show all commits

View File

@ -24,10 +24,8 @@ class AuthController(private val service: AuthService) {
if (service.isBlockAuth(authenticateData)) { if (service.isBlockAuth(authenticateData)) {
service.signOut(member.id!!) service.signOut(member.id!!)
throw SodaException("운영정책을 위반하여 이용을 제한합니다.") throw SodaException("운영정책을 위반하여 이용을 제한합니다.")
} else {
service.authenticate(authenticateData, member.id!!)
} }
ApiResponse.ok(null, null) ApiResponse.ok(service.authenticate(authenticateData, member.id!!))
} }
} }