1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 13:38:13 -05:00

dont send pushes for now since they depend on user

This commit is contained in:
Kyle Spearrin 2017-03-21 21:21:28 -04:00
parent d266da1084
commit 8cf6e8568b

View File

@ -44,7 +44,7 @@ namespace Bit.Core.Services
await _cipherRepository.CreateAsync(cipher);
// push
await _pushService.PushSyncCipherCreateAsync(cipher);
//await _pushService.PushSyncCipherCreateAsync(cipher);
}
else
{
@ -52,7 +52,7 @@ namespace Bit.Core.Services
await _cipherRepository.ReplaceAsync(cipher);
// push
await _pushService.PushSyncCipherUpdateAsync(cipher);
//await _pushService.PushSyncCipherUpdateAsync(cipher);
}
}
@ -61,7 +61,7 @@ namespace Bit.Core.Services
await _cipherRepository.DeleteAsync(cipher);
// push
await _pushService.PushSyncCipherDeleteAsync(cipher);
//await _pushService.PushSyncCipherDeleteAsync(cipher);
}
public async Task SaveFolderAsync(Folder folder)