Support incoming audio only calls

This commit is contained in:
Valere 2026-03-04 08:56:33 +01:00
parent 5491040ac5
commit 7ef43abd57
22 changed files with 156 additions and 53 deletions

View file

@ -56,6 +56,7 @@ sealed interface NotificationContent {
data class RtcNotification(
val senderId: UserId,
val type: RtcNotificationType,
val callIntent: CallIntent,
val expirationTimestampMillis: Long
) : MessageLike
@ -127,3 +128,8 @@ enum class RtcNotificationType {
RING,
NOTIFY
}
enum class CallIntent {
AUDIO,
VIDEO
}