1
0
Fork 0
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:
Konstantin Ivanov 2025-04-01 10:48:43 +02:00 committed by GitHub
parent 7bec1556cb
commit eb0f7e16a9
Signed by: github
GPG key ID: B5690EEEBB952194
25 changed files with 405 additions and 99 deletions

View file

@ -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)

View file

@ -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