Skip to content

Commit

Permalink
Fixed cherry-pick problems
Browse files Browse the repository at this point in the history
  • Loading branch information
borichellow committed Aug 9, 2024
1 parent a476e8e commit e6326bf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,8 @@ interface UserRepository {
suspend fun fetchUsersLegalHoldConsent(userIds: Set<UserId>): Either<CoreFailure, ListUsersLegalHoldConsent>

suspend fun getOneOnOnConversationId(userId: QualifiedID): Either<StorageFailure, ConversationId>
<<<<<<< HEAD
suspend fun getUsersMinimizedByQualifiedIDs(userIds: List<UserId>): Either<StorageFailure, List<OtherUserMinimized>>
=======
suspend fun getNameAndHandle(userId: UserId): Either<StorageFailure, NameAndHandle>
>>>>>>> 20e5b8560d (fix: Validate other members UserName and DisplayName in E2EI [WPB-10402] 🍒 (#2939))
}

@Suppress("LongParameterList", "TooManyFunctions")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,6 @@ interface UserDAO {
suspend fun upsertConnectionStatuses(userStatuses: Map<QualifiedIDEntity, ConnectionEntity.State>)
suspend fun isAtLeastOneUserATeamMember(userId: List<UserIDEntity>, teamId: String): Boolean
suspend fun getOneOnOnConversationId(userId: UserIDEntity): QualifiedIDEntity?
<<<<<<< HEAD
suspend fun getUsersMinimizedByQualifiedIDs(qualifiedIDs: List<QualifiedIDEntity>): List<UserEntityMinimized>
=======
suspend fun getNameAndHandle(userId: UserIDEntity): NameAndHandleEntity?
>>>>>>> 20e5b8560d (fix: Validate other members UserName and DisplayName in E2EI [WPB-10402] 🍒 (#2939))
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,8 @@ package com.wire.kalium.persistence.dao

import app.cash.sqldelight.coroutines.asFlow
import com.wire.kalium.persistence.UsersQueries
<<<<<<< HEAD
import com.wire.kalium.persistence.cache.FlowCache
=======
import com.wire.kalium.persistence.cache.Cache
import com.wire.kalium.persistence.dao.conversation.NameAndHandleEntity
>>>>>>> 20e5b8560d (fix: Validate other members UserName and DisplayName in E2EI [WPB-10402] 🍒 (#2939))
import com.wire.kalium.persistence.util.mapToList
import com.wire.kalium.persistence.util.mapToOneOrNull
import kotlinx.coroutines.flow.Flow
Expand Down

0 comments on commit e6326bf

Please sign in to comment.