test #316

Merged
klaus merged 20 commits from test into main 2025-05-20 06:03:11 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit b102241efd - Show all commits

View File

@ -44,7 +44,7 @@ class AudioContentCommentController(
userActionService.recordAction(
memberId = member.id!!,
actionType = ActionType.CONTENT_COMMENT,
commentId = commentId,
contentCommentId = commentId,
pushTokenList = pushTokenList
)
@ -52,7 +52,7 @@ class AudioContentCommentController(
memberId = member.id!!,
actionType = ActionType.ORDER_CONTENT_COMMENT,
contentId = request.contentId,
commentId = commentId,
contentCommentId = commentId,
pushTokenList = pushTokenList
)
} catch (_: Exception) {

View File

@ -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()