feature(space) : filter space manually so we can show space invites

This commit is contained in:
ganfra 2025-10-02 17:38:47 +02:00
parent db424b6e41
commit 576429b183
4 changed files with 51 additions and 25 deletions

View file

@ -58,11 +58,12 @@ sealed interface RoomListFilter {
data object Invite : RoomListFilter
/**
* A filter that matches either Group or People rooms.
* A filter that matches either Group,People rooms or Space.
*/
sealed interface Category : RoomListFilter {
data object Group : Category
data object People : Category
data object Space : Category
}
/**