mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 22:32:22 -05:00
30 lines
645 B
C#
30 lines
645 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class NoopPushService : IPushService
|
|
{
|
|
public Task PushSyncCipherCreateAsync(Cipher cipher)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
public Task PushSyncCipherDeleteAsync(Cipher cipher)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
public Task PushSyncCiphersAsync(Guid userId)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
public Task PushSyncCipherUpdateAsync(Cipher cipher)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|
|
}
|