Merge branch 'develop' into feature/fga/knock_requests_sdk
This commit is contained in:
commit
5275a3e5d3
391 changed files with 6199 additions and 1991 deletions
|
|
@ -12,4 +12,5 @@ enum class CurrentUserMembership {
|
|||
JOINED,
|
||||
LEFT,
|
||||
KNOCKED,
|
||||
BANNED,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -241,6 +241,11 @@ interface MatrixRoom : Closeable {
|
|||
*/
|
||||
suspend fun setUnreadFlag(isUnread: Boolean): Result<Unit>
|
||||
|
||||
/**
|
||||
* Clear the event cache storage for the current room.
|
||||
*/
|
||||
suspend fun clearEventCacheStorage(): Result<Unit>
|
||||
|
||||
/**
|
||||
* Share a location message in the room.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
package io.element.android.libraries.matrix.api.roomlist
|
||||
|
||||
import io.element.android.libraries.core.extensions.withoutAccents
|
||||
|
||||
sealed interface RoomListFilter {
|
||||
companion object {
|
||||
/**
|
||||
|
|
@ -73,5 +75,7 @@ sealed interface RoomListFilter {
|
|||
*/
|
||||
data class NormalizedMatchRoomName(
|
||||
val pattern: String
|
||||
) : RoomListFilter
|
||||
) : RoomListFilter {
|
||||
val normalizedPattern: String = pattern.withoutAccents()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,10 +15,17 @@ enum class UtdCause {
|
|||
UnknownDevice,
|
||||
|
||||
/**
|
||||
* Expected utd because this is a device-historical message and
|
||||
* key storage is not setup or not configured correctly.
|
||||
* We are missing the keys for this event, but it is a "device-historical" message and
|
||||
* there is no key storage backup on the server, presumably because the user has turned it off.
|
||||
*/
|
||||
HistoricalMessage,
|
||||
HistoricalMessageAndBackupIsDisabled,
|
||||
|
||||
/**
|
||||
* We are missing the keys for this event, but it is a "device-historical"
|
||||
* message, and even though a key storage backup does exist, we can't use
|
||||
* it because our device is unverified.
|
||||
*/
|
||||
HistoricalMessageAndDeviceIsUnverified,
|
||||
|
||||
/**
|
||||
* The key was withheld on purpose because your device is insecure and/or the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue