PM-10564: Notification create push notification simplification.

NotificationStatus not needed.
This commit is contained in:
Maciej Zieniuk
2024-11-21 22:43:14 +00:00
parent 01c814595e
commit 3885885d5f
12 changed files with 63 additions and 108 deletions

View File

@@ -146,9 +146,9 @@ public class MultiServicePushNotificationService : IPushNotificationService
return Task.FromResult(0);
}
public Task PushSyncNotificationCreateAsync(Notification notification, NotificationStatus? notificationStatus)
public Task PushSyncNotificationCreateAsync(Notification notification)
{
PushToServices((s) => s.PushSyncNotificationCreateAsync(notification, notificationStatus));
PushToServices((s) => s.PushSyncNotificationCreateAsync(notification));
return Task.CompletedTask;
}