Remove space announcement.

Rework to keep the logic for fullscreen announcement.
This commit is contained in:
Benoit Marty 2026-04-10 12:53:53 +02:00
parent e25148c136
commit 6abe9d7d18
21 changed files with 374 additions and 430 deletions

View file

@ -8,7 +8,10 @@
package io.element.android.features.announcement.api
enum class Announcement {
Space,
NewNotificationSound,
sealed interface Announcement {
sealed interface Fullscreen : Announcement {
data object Space : Fullscreen
}
data object NewNotificationSound : Announcement
}