Room directory : implement simple join room

This commit is contained in:
ganfra 2024-03-26 12:32:15 +01:00
parent 0c96769e8b
commit 90b2a65c1a
10 changed files with 89 additions and 19 deletions

View file

@ -59,6 +59,7 @@ interface MatrixClient : Closeable {
suspend fun setDisplayName(displayName: String): Result<Unit>
suspend fun uploadAvatar(mimeType: String, data: ByteArray): Result<Unit>
suspend fun removeAvatar(): Result<Unit>
suspend fun joinRoom(roomId: RoomId): Result<RoomId>
fun syncService(): SyncService
fun sessionVerificationService(): SessionVerificationService
fun pushersService(): PushersService