mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-3409 Primitives | Reset layout conflict (#2217)
This commit is contained in:
parent
7bec1556cb
commit
eb0f7e16a9
25 changed files with 405 additions and 99 deletions
|
@ -467,8 +467,8 @@ class BlockDataRepository(
|
|||
ctx: Id, relation: Id
|
||||
): Payload? = remote.addRelationToObject(ctx, relation)
|
||||
|
||||
override suspend fun deleteRelationFromObject(ctx: Id, relation: Key): Payload {
|
||||
return remote.deleteRelationFromObject(ctx = ctx, relation = relation)
|
||||
override suspend fun deleteRelationFromObject(ctx: Id, relations: List<Key>): Payload {
|
||||
return remote.deleteRelationFromObject(ctx = ctx, relations = relations)
|
||||
}
|
||||
|
||||
override suspend fun debugSpace(space: SpaceId): String = remote.debugSpace(space)
|
||||
|
|
|
@ -192,7 +192,7 @@ interface BlockRemote {
|
|||
suspend fun cancelObjectSearchSubscription(subscriptions: List<Id>)
|
||||
|
||||
suspend fun addRelationToObject(ctx: Id, relation: Key): Payload?
|
||||
suspend fun deleteRelationFromObject(ctx: Id, relation: Key): Payload
|
||||
suspend fun deleteRelationFromObject(ctx: Id, relations: List<Key>): Payload
|
||||
|
||||
suspend fun debugSpace(space: SpaceId): String
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue