fix: 유저 행동 데이터
- commentId -> contentCommentId 로 변경
This commit is contained in:
@@ -33,7 +33,7 @@ class UserActionService(
|
||||
memberId: Long,
|
||||
actionType: ActionType,
|
||||
contentId: Long? = null,
|
||||
commentId: Long? = null,
|
||||
contentCommentId: Long? = null,
|
||||
pushTokenList: List<String> = emptyList()
|
||||
) {
|
||||
coroutineScope.launch {
|
||||
@@ -43,7 +43,7 @@ class UserActionService(
|
||||
UserActionLog(
|
||||
memberId = memberId,
|
||||
actionType = actionType,
|
||||
commentId = commentId
|
||||
contentCommentId = contentCommentId
|
||||
)
|
||||
)
|
||||
repository.flush()
|
||||
|
Reference in New Issue
Block a user