mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
send collection ids with cipher notification
This commit is contained in:
@ -47,15 +47,15 @@ namespace Bit.Core.Services
|
||||
}
|
||||
}
|
||||
|
||||
public Task PushSyncCipherCreateAsync(Cipher cipher)
|
||||
public Task PushSyncCipherCreateAsync(Cipher cipher, IEnumerable<Guid> collectionIds)
|
||||
{
|
||||
PushToServices((s) => s.PushSyncCipherCreateAsync(cipher));
|
||||
PushToServices((s) => s.PushSyncCipherCreateAsync(cipher, collectionIds));
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public Task PushSyncCipherUpdateAsync(Cipher cipher)
|
||||
public Task PushSyncCipherUpdateAsync(Cipher cipher, IEnumerable<Guid> collectionIds)
|
||||
{
|
||||
PushToServices((s) => s.PushSyncCipherUpdateAsync(cipher));
|
||||
PushToServices((s) => s.PushSyncCipherUpdateAsync(cipher, collectionIds));
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user