Skip to content

Commit

Permalink
chore: detekt
Browse files Browse the repository at this point in the history
  • Loading branch information
ohassine committed Dec 21, 2023
1 parent 2b54732 commit 729863f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ interface ClientApi {

suspend fun fetchClientInfo(clientID: String): NetworkResponse<ClientDTO>

suspend fun updateClientMlsPublicKeys(updateClientMlsPublicKeysRequest: UpdateClientMlsPublicKeysRequest, clientID: String): NetworkResponse<Unit>
suspend fun updateClientMlsPublicKeys(
updateClientMlsPublicKeysRequest: UpdateClientMlsPublicKeysRequest,
clientID: String
): NetworkResponse<Unit>

suspend fun updateClientCapabilities(
updateClientCapabilitiesRequest: UpdateClientCapabilitiesRequest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ interface UserConfigDAO {
suspend fun shouldUpdateClientLegalHoldCapability(): Boolean
}

@Suppress("TooManyFunctions")
internal class UserConfigDAOImpl internal constructor(
private val metadataDAO: MetadataDAO
) : UserConfigDAO {
Expand Down

0 comments on commit 729863f

Please sign in to comment.