Add missing methods.

This commit is contained in:
Benoit Marty 2024-05-07 16:52:49 +02:00 committed by Benoit Marty
parent ff61eaa6a7
commit 495be55755
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)
}