Add missing methods.
This commit is contained in:
parent
ff61eaa6a7
commit
495be55755
2 changed files with 8 additions and 0 deletions
|
|
@ -28,6 +28,10 @@ class FakePushService(
|
|||
override fun notificationStyleChanged() {
|
||||
}
|
||||
|
||||
override suspend fun getCurrentPushProvider(): PushProvider? {
|
||||
return null
|
||||
}
|
||||
|
||||
override fun getAvailablePushProviders(): List<PushProvider> {
|
||||
return emptyList()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue