1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 17:42:49 -05:00

added push events and moved cipher writing to cipher service.

This commit is contained in:
Kyle Spearrin
2016-06-29 01:15:37 -04:00
parent afa37f5ab1
commit ef0a808687
8 changed files with 120 additions and 17 deletions

View File

@ -0,0 +1,10 @@
namespace Bit.Core.Enums
{
public enum PushType : short
{
SyncCipherUpdate = 0,
SyncCipherCreate = 1,
SyncCipherDelete = 2,
SyncCiphers = 3
}
}