mirror of
https://github.com/bitwarden/server
synced 2026-01-09 03:53:42 +00:00
use EventTableEntity instead of TableEntity
This commit is contained in:
@@ -49,12 +49,12 @@ namespace Bit.Core.Repositories.TableStorage
|
||||
return results;
|
||||
}
|
||||
|
||||
public async Task CreateAsync(ITableEntity entity)
|
||||
public async Task CreateAsync(EventTableEntity entity)
|
||||
{
|
||||
await Table.ExecuteAsync(TableOperation.Insert(entity));
|
||||
}
|
||||
|
||||
public async Task CreateManyAsync(IList<ITableEntity> entities)
|
||||
public async Task CreateManyAsync(IList<EventTableEntity> entities)
|
||||
{
|
||||
if(!entities?.Any() ?? true)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user