Merge pull request 'refactor: 본인인증 - 본인인증이 완료된 후 유저 행동 데이터를 기록하도록 수정' (#310) from test into main

Reviewed-on: #310
This commit is contained in:
klaus 2025-04-24 11:10:17 +00:00
commit 9c33fd93f7
1 changed files with 3 additions and 1 deletions

View File

@ -31,12 +31,14 @@ class AuthController(
throw SodaException("운영정책을 위반하여 이용을 제한합니다.")
}
val authResponse = service.authenticate(authenticateData, member.id!!)
userActionService.recordAction(
memberId = member.id!!,
actionType = ActionType.USER_AUTHENTICATION,
pushToken = member.pushToken
)
ApiResponse.ok(service.authenticate(authenticateData, member.id!!))
ApiResponse.ok(authResponse)
}
}