Compare commits
No commits in common. "9c33fd93f73734f215b1eaaba5c9292fe2197e67" and "3c087bc2757ea9e443b030d25a3880edd0f58622" have entirely different histories.
9c33fd93f7
...
3c087bc275
|
@ -31,14 +31,12 @@ 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(authResponse)
|
||||
ApiResponse.ok(service.authenticate(authenticateData, member.id!!))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue