Skip to content

Commit

Permalink
fix: Merging issue (#3199)
Browse files Browse the repository at this point in the history
Co-authored-by: Yamil Medina <[email protected]>
  • Loading branch information
borichellow and yamilmedina authored Dec 27, 2024
1 parent 72b6d4c commit 6ddef73
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ import com.wire.kalium.logic.feature.asset.UpdateAssetMessageTransferStatusUseCa
import com.wire.kalium.logic.feature.asset.UpdateAssetMessageTransferStatusUseCaseImpl
import com.wire.kalium.logic.feature.asset.ValidateAssetFileTypeUseCase
import com.wire.kalium.logic.feature.asset.ValidateAssetFileTypeUseCaseImpl
import com.wire.kalium.logic.feature.incallreaction.SendInCallReactionUseCase
import com.wire.kalium.logic.feature.message.composite.SendButtonActionConfirmationMessageUseCase
import com.wire.kalium.logic.feature.message.composite.SendButtonActionMessageUseCase
import com.wire.kalium.logic.feature.message.composite.SendButtonMessageUseCase
Expand Down Expand Up @@ -454,6 +455,15 @@ class MessageScope internal constructor(
val removeMessageDraftUseCase: RemoveMessageDraftUseCase
get() = RemoveMessageDraftUseCaseImpl(messageDraftRepository)

val sendInCallReactionUseCase: SendInCallReactionUseCase
get() = SendInCallReactionUseCase(
selfUserId = selfUserId,
provideClientId = currentClientIdProvider,
messageSender = messageSender,
dispatchers = dispatcher,
scope = scope,
)

val getSenderNameByMessageId: GetSenderNameByMessageIdUseCase
get() = GetSenderNameByMessageIdUseCase(messageRepository)

Expand Down

0 comments on commit 6ddef73

Please sign in to comment.