Add missing methods.

This commit is contained in:
Benoit Marty
2024-05-07 16:52:49 +02:00
committed by Benoit Marty
parent 12f7c9982b
commit 6de5e7b3f5
2 changed files with 8 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ class FakePushService(
override fun notificationStyleChanged() {
}
override suspend fun getCurrentPushProvider(): PushProvider? {
return null
}
override fun getAvailablePushProviders(): List<PushProvider> {
return emptyList()
}

View File

@@ -35,6 +35,10 @@ class FakePushProvider(
return Result.success(Unit)
}
override suspend fun getCurrentDistributor(matrixClient: MatrixClient): Distributor? {
return null
}
override suspend fun unregister(matrixClient: MatrixClient): Result<Unit> {
return Result.success(Unit)
}