Update incoming call notification content to "📹 Incoming call"

This commit is contained in:
Benoit Marty 2025-02-04 16:09:15 +01:00
parent c5f3b3450a
commit 7878f97453
14 changed files with 85 additions and 9 deletions

View file

@ -30,6 +30,7 @@ interface ElementCallEntryPoint {
* @param avatarUrl The avatar url of the room or DM.
* @param timestamp The timestamp of the event that started the call.
* @param notificationChannelId The id of the notification channel to use for the call notification.
* @param textContent The text content of the notification. If null the default content from the system will be used.
*/
fun handleIncomingCall(
callType: CallType.RoomCall,
@ -40,5 +41,6 @@ interface ElementCallEntryPoint {
avatarUrl: String?,
timestamp: Long,
notificationChannelId: String,
textContent: String?,
)
}