1
0
mirror of https://github.com/bitwarden/server synced 2025-12-19 09:43:25 +00:00

send collection ids with cipher notification

This commit is contained in:
Kyle Spearrin
2018-08-21 09:29:38 -04:00
parent ad5b71643a
commit 1b489daca1
9 changed files with 49 additions and 40 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Enums;
using Bit.Core.Models.Table;
@@ -7,7 +8,7 @@ namespace Bit.Core.Services
{
public class NoopPushNotificationService : IPushNotificationService
{
public Task PushSyncCipherCreateAsync(Cipher cipher)
public Task PushSyncCipherCreateAsync(Cipher cipher, IEnumerable<Guid> collectionIds)
{
return Task.FromResult(0);
}
@@ -22,7 +23,7 @@ namespace Bit.Core.Services
return Task.FromResult(0);
}
public Task PushSyncCipherUpdateAsync(Cipher cipher)
public Task PushSyncCipherUpdateAsync(Cipher cipher, IEnumerable<Guid> collectionIds)
{
return Task.FromResult(0);
}