Compare commits

..

No commits in common. "9c33fd93f73734f215b1eaaba5c9292fe2197e67" and "3c087bc2757ea9e443b030d25a3880edd0f58622" have entirely different histories.

1 changed files with 1 additions and 3 deletions

View File

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