mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
process messages with IEvent
This commit is contained in:
@@ -6,12 +6,12 @@ namespace Bit.Core.Services
|
||||
{
|
||||
public class NoopEventWriteService : IEventWriteService
|
||||
{
|
||||
public Task CreateAsync(EventTableEntity entity)
|
||||
public Task CreateAsync(IEvent e)
|
||||
{
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public Task CreateManyAsync(IList<EventTableEntity> entities)
|
||||
public Task CreateManyAsync(IList<IEvent> e)
|
||||
{
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user