mirror of
https://github.com/bitwarden/server
synced 2026-01-18 00:13:19 +00:00
added push events and moved cipher writing to cipher service.
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
namespace Bit.Core.Services
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Domains;
|
||||
|
||||
namespace Bit.Core.Services
|
||||
{
|
||||
public interface IPushService
|
||||
{
|
||||
|
||||
Task PushSyncCipherCreateAsync(Cipher cipher);
|
||||
Task PushSyncCipherUpdateAsync(Cipher cipher);
|
||||
Task PushSyncCipherDeleteAsync(Cipher cipher);
|
||||
Task PushSyncCiphersAsync(Guid userId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user