Merge branch 'develop' into feature/fga/mark_room_as_favorite

This commit is contained in:
ganfra 2024-02-12 17:08:36 +01:00
commit a8bc0cb4ca
538 changed files with 4465 additions and 1639 deletions

View file

@ -21,9 +21,13 @@ import io.element.android.libraries.matrix.api.room.MatrixRoom
/**
* Set the favorite status of a room.
* This will update the notable tags of the room.
* Use either the room id or the room instance with the desired favorite status.
*/
interface SetRoomIsFavoriteAction {
/**
* The result of the action?
*/
sealed interface Result {
data object Success : Result
data object RoomNotFound : Result