Merge pull request #3132 from element-hq/feature/fga/draft_in_memory_when_editing

Draft : add volatile storage when moving to edit mode.
This commit is contained in:
ganfra 2024-07-03 15:38:00 +02:00 committed by GitHub
commit c7dd2d5b6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 436 additions and 124 deletions

View file

@ -16,7 +16,10 @@
package io.element.android.libraries.textcomposer.model
import io.element.android.libraries.matrix.api.room.Mention
data class Message(
val html: String?,
val markdown: String,
val mentions: List<Mention>,
)