Add extra logs the 'send call notification' flow (#4819)

This commit is contained in:
Jorge Martin Espinosa 2025-06-05 13:34:45 +02:00 committed by GitHub
parent 800a3318e6
commit 3ba11db282
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 76 additions and 19 deletions

View file

@ -15,11 +15,19 @@ import kotlinx.parcelize.Parcelize
sealed interface CallType : NodeInputs, Parcelable {
@Parcelize
data class ExternalUrl(val url: String) : CallType
data class ExternalUrl(val url: String) : CallType {
override fun toString(): String {
return "ExternalUrl"
}
}
@Parcelize
data class RoomCall(
val sessionId: SessionId,
val roomId: RoomId,
) : CallType
) : CallType {
override fun toString(): String {
return "RoomCall(sessionId=$sessionId, roomId=$roomId)"
}
}
}