Add room list filter combining based on space selection

This commit is contained in:
ganfra 2026-02-02 21:46:33 +01:00
parent 2f0da202df
commit 212a8e3aa3
7 changed files with 48 additions and 49 deletions

View file

@ -8,6 +8,8 @@
package io.element.android.libraries.matrix.api.roomlist
import io.element.android.libraries.matrix.api.core.RoomId
sealed interface RoomListFilter {
companion object {
/**
@ -41,6 +43,10 @@ sealed interface RoomListFilter {
val filters: List<RoomListFilter>
) : RoomListFilter
data class Identifiers(
val values : List<RoomId>,
): RoomListFilter
/**
* A filter that matches rooms that are unread.
*/