Skip to content

Commit

Permalink
detekt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Garzas committed Jul 14, 2023
1 parent 6a70243 commit adf29fd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import kotlinx.coroutines.flow.map
import kotlinx.coroutines.withContext
import kotlin.coroutines.CoroutineContext

@Suppress("TooManyFunctions")
interface MemberDAO {
suspend fun insertMember(member: MemberEntity, conversationID: QualifiedIDEntity)
suspend fun updateMemberRole(userId: UserIDEntity, conversationID: QualifiedIDEntity, newRole: MemberEntity.Role)
Expand All @@ -53,6 +54,7 @@ interface MemberDAO {
suspend fun updateFullMemberList(memberList: List<MemberEntity>, conversationID: QualifiedIDEntity)
}

@Suppress("TooManyFunctions")
internal class MemberDAOImpl internal constructor(
private val memberQueries: MembersQueries,
private val userQueries: UsersQueries,
Expand Down

0 comments on commit adf29fd

Please sign in to comment.