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

DROID-2642 Sharing extension | Support Videos and Files (#1367)

This commit is contained in:
Konstantin Ivanov 2024-07-08 16:57:28 +02:00 committed by GitHub
parent 6480c22c92
commit 366d994fa5
Signed by: github
GPG key ID: B5690EEEBB952194
16 changed files with 217 additions and 30 deletions

View file

@ -1027,4 +1027,8 @@ class BlockDataRepository(
override suspend fun membershipGetTiers(command: Command.Membership.GetTiers): List<MembershipTierData> {
return remote.membershipGetTiers(command)
}
override suspend fun processCancel(command: Command.ProcessCancel) {
remote.processCancel(command)
}
}

View file

@ -434,4 +434,6 @@ interface BlockRemote {
suspend fun membershipGetVerificationEmail(command: Command.Membership.GetVerificationEmail)
suspend fun membershipVerifyEmailCode(command: Command.Membership.VerifyEmailCode)
suspend fun membershipGetTiers(command: Command.Membership.GetTiers): List<MembershipTierData>
suspend fun processCancel(command: Command.ProcessCancel)
}