Merge pull request #5449 from element-hq/feature/fga/room_list_space_invite

Room list space invite
This commit is contained in:
ganfra 2025-10-03 13:17:28 +02:00 committed by GitHub
commit 0bec8f038c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 92 additions and 41 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
}
/**