From fceb734ae56acfea674300da14e5cbe3536c11e4 Mon Sep 17 00:00:00 2001 From: Shane Date: Thu, 3 Apr 2025 15:39:27 -0700 Subject: [PATCH] [PM-10611] Add missing TaskId to push notification payloads --- src/Core/Models/PushNotification.cs | 1 + .../NotificationHub/NotificationHubPushNotificationService.cs | 2 ++ .../Platform/Push/Services/AzureQueuePushNotificationService.cs | 2 ++ .../Push/Services/NotificationsApiPushNotificationService.cs | 2 ++ src/Core/Platform/Push/Services/RelayPushNotificationService.cs | 2 ++ 5 files changed, 9 insertions(+) diff --git a/src/Core/Models/PushNotification.cs b/src/Core/Models/PushNotification.cs index 63058be692..83c6f577d4 100644 --- a/src/Core/Models/PushNotification.cs +++ b/src/Core/Models/PushNotification.cs @@ -56,6 +56,7 @@ public class NotificationPushNotification public Guid? UserId { get; set; } public Guid? OrganizationId { get; set; } public Guid? InstallationId { get; set; } + public Guid? TaskId { get; set; } public string? Title { get; set; } public string? Body { get; set; } public DateTime CreationDate { get; set; } diff --git a/src/Core/NotificationHub/NotificationHubPushNotificationService.cs b/src/Core/NotificationHub/NotificationHubPushNotificationService.cs index a28b21f465..55badf80e4 100644 --- a/src/Core/NotificationHub/NotificationHubPushNotificationService.cs +++ b/src/Core/NotificationHub/NotificationHubPushNotificationService.cs @@ -212,6 +212,7 @@ public class NotificationHubPushNotificationService : IPushNotificationService UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = installationId, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, @@ -263,6 +264,7 @@ public class NotificationHubPushNotificationService : IPushNotificationService UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = installationId, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, diff --git a/src/Core/Platform/Push/Services/AzureQueuePushNotificationService.cs b/src/Core/Platform/Push/Services/AzureQueuePushNotificationService.cs index e61dd15f0d..a9140796f2 100644 --- a/src/Core/Platform/Push/Services/AzureQueuePushNotificationService.cs +++ b/src/Core/Platform/Push/Services/AzureQueuePushNotificationService.cs @@ -188,6 +188,7 @@ public class AzureQueuePushNotificationService : IPushNotificationService UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = notification.Global ? _globalSettings.Installation.Id : null, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, @@ -208,6 +209,7 @@ public class AzureQueuePushNotificationService : IPushNotificationService UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = notification.Global ? _globalSettings.Installation.Id : null, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, diff --git a/src/Core/Platform/Push/Services/NotificationsApiPushNotificationService.cs b/src/Core/Platform/Push/Services/NotificationsApiPushNotificationService.cs index 53a0de9a27..d5cc0819cd 100644 --- a/src/Core/Platform/Push/Services/NotificationsApiPushNotificationService.cs +++ b/src/Core/Platform/Push/Services/NotificationsApiPushNotificationService.cs @@ -201,6 +201,7 @@ public class NotificationsApiPushNotificationService : BaseIdentityClientService UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = notification.Global ? _globalSettings.Installation.Id : null, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, @@ -221,6 +222,7 @@ public class NotificationsApiPushNotificationService : BaseIdentityClientService UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = notification.Global ? _globalSettings.Installation.Id : null, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, diff --git a/src/Core/Platform/Push/Services/RelayPushNotificationService.cs b/src/Core/Platform/Push/Services/RelayPushNotificationService.cs index 53f5835322..c9e77bf17f 100644 --- a/src/Core/Platform/Push/Services/RelayPushNotificationService.cs +++ b/src/Core/Platform/Push/Services/RelayPushNotificationService.cs @@ -210,6 +210,7 @@ public class RelayPushNotificationService : BaseIdentityClientService, IPushNoti UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = notification.Global ? _globalSettings.Installation.Id : null, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate, @@ -247,6 +248,7 @@ public class RelayPushNotificationService : BaseIdentityClientService, IPushNoti UserId = notification.UserId, OrganizationId = notification.OrganizationId, InstallationId = notification.Global ? _globalSettings.Installation.Id : null, + TaskId = notification.TaskId, Title = notification.Title, Body = notification.Body, CreationDate = notification.CreationDate,