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:
parent
50d0d293ec
commit
3536f4535b
9 changed files with 76 additions and 0 deletions
|
@ -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()
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue