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

DROID-3399 Primitives | Provide type relations into Type DataView properties menu (#2262)

This commit is contained in:
Konstantin Ivanov 2025-04-09 13:10:13 +02:00 committed by GitHub
parent 770c750eac
commit bb4e5479e7
Signed by: github
GPG key ID: B5690EEEBB952194
22 changed files with 318 additions and 46 deletions

View file

@ -1114,4 +1114,8 @@ class BlockDataRepository(
override suspend fun objectTypeSetRecommendedFields(command: Command.ObjectTypeSetRecommendedFields) {
remote.objectTypeSetRecommendedFields(command)
}
override suspend fun setDataViewProperties(command: Command.SetDataViewProperties): Payload {
return remote.setDataViewProperties(command)
}
}

View file

@ -473,4 +473,6 @@ interface BlockRemote {
suspend fun objectTypeSetRecommendedHeaderFields(command: Command.ObjectTypeSetRecommendedHeaderFields)
suspend fun objectTypeSetRecommendedFields(command: Command.ObjectTypeSetRecommendedFields)
suspend fun setDataViewProperties(command: Command.SetDataViewProperties): Payload
}