Implements#4054 - Add channel name to channel message notification (#4069)

This commit is contained in:
Camerin Figueroa 2025-12-27 08:02:16 -05:00 committed by GitHub
parent 55754b1612
commit 250caa7c99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 28 additions and 4 deletions

View file

@ -31,7 +31,13 @@ interface MeshServiceNotifications {
fun updateServiceStateNotification(summaryString: String?, telemetry: TelemetryProtos.Telemetry?): Notification
fun updateMessageNotification(contactKey: String, name: String, message: String, isBroadcast: Boolean)
fun updateMessageNotification(
contactKey: String,
name: String,
message: String,
isBroadcast: Boolean,
channelName: String?,
)
fun showAlertNotification(contactKey: String, name: String, alert: String)