Display poll notifications in the notification drawer (#1467)
Display notifications for polls as if they were message events.
This commit is contained in:
parent
53cf82f025
commit
fc205698c6
3 changed files with 21 additions and 5 deletions
|
|
@ -61,7 +61,10 @@ sealed interface NotificationContent {
|
|||
) : MessageLike
|
||||
data object RoomRedaction : MessageLike
|
||||
data object Sticker : MessageLike
|
||||
data class Poll(val question: String) : MessageLike
|
||||
data class Poll(
|
||||
val senderId: UserId,
|
||||
val question: String,
|
||||
) : MessageLike
|
||||
}
|
||||
|
||||
sealed interface StateEvent : NotificationContent {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue