Support incoming audio only calls
This commit is contained in:
parent
5491040ac5
commit
7ef43abd57
22 changed files with 156 additions and 53 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue