mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* organization status changed code changes Signed-off-by: Cy Okeke <cokeke@bitwarden.com> * Add the push notification to subscriptionUpdated Signed-off-by: Cy Okeke <cokeke@bitwarden.com> * send notification using the SendPayloadToUser Signed-off-by: Cy Okeke <cokeke@bitwarden.com> * Change the implementation to send userId * Added new implementation for orgstatus sync * refactor the code and remove private methods --------- Signed-off-by: Cy Okeke <cokeke@bitwarden.com>
33 lines
1.5 KiB
C#
33 lines
1.5 KiB
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Core.Auth.Entities;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Tools.Entities;
|
|
using Bit.Core.Vault.Entities;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IPushNotificationService
|
|
{
|
|
Task PushSyncCipherCreateAsync(Cipher cipher, IEnumerable<Guid> collectionIds);
|
|
Task PushSyncCipherUpdateAsync(Cipher cipher, IEnumerable<Guid> collectionIds);
|
|
Task PushSyncCipherDeleteAsync(Cipher cipher);
|
|
Task PushSyncFolderCreateAsync(Folder folder);
|
|
Task PushSyncFolderUpdateAsync(Folder folder);
|
|
Task PushSyncFolderDeleteAsync(Folder folder);
|
|
Task PushSyncCiphersAsync(Guid userId);
|
|
Task PushSyncVaultAsync(Guid userId);
|
|
Task PushSyncOrganizationsAsync(Guid userId);
|
|
Task PushSyncOrgKeysAsync(Guid userId);
|
|
Task PushSyncSettingsAsync(Guid userId);
|
|
Task PushLogOutAsync(Guid userId, bool excludeCurrentContextFromPush = false);
|
|
Task PushSyncSendCreateAsync(Send send);
|
|
Task PushSyncSendUpdateAsync(Send send);
|
|
Task PushSyncSendDeleteAsync(Send send);
|
|
Task PushAuthRequestAsync(AuthRequest authRequest);
|
|
Task PushAuthRequestResponseAsync(AuthRequest authRequest);
|
|
Task SendPayloadToUserAsync(string userId, PushType type, object payload, string identifier, string deviceId = null);
|
|
Task SendPayloadToOrganizationAsync(string orgId, PushType type, object payload, string identifier,
|
|
string deviceId = null);
|
|
Task PushSyncOrganizationStatusAsync(Organization organization);
|
|
}
|