1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2578 Tech | Implement BlockDataViewSetActiveView (#1766)

This commit is contained in:
Konstantin Ivanov 2024-11-05 09:12:50 +01:00 committed by GitHub
parent 50d0d293ec
commit 3536f4535b
Signed by: github
GPG key ID: B5690EEEBB952194
9 changed files with 76 additions and 0 deletions

View file

@ -872,6 +872,10 @@ class BlockDataRepository(
return remote.setQueryToSet(command)
}
override suspend fun dataViewSetActiveView(command: Command.DataViewSetActiveView): Payload {
return remote.dataViewSetActiveView(command)
}
override suspend fun nodeUsage(): NodeUsageInfo {
return remote.nodeUsage()
}

View file

@ -382,6 +382,7 @@ interface BlockRemote {
suspend fun addObjectToCollection(command: Command.AddObjectToCollection): Payload
suspend fun setQueryToSet(command: Command.SetQueryToSet): Payload
suspend fun nodeUsage(): NodeUsageInfo
suspend fun dataViewSetActiveView(command: Command.DataViewSetActiveView): Payload
suspend fun setInternalFlags(command: Command.SetInternalFlags): Payload