mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08:00
PM-10564: Notification create push notification simplification.
NotificationStatus not needed.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user