1
0
mirror of https://github.com/bitwarden/server synced 2025-12-27 21:53:24 +00:00

stub out API for events

This commit is contained in:
Kyle Spearrin
2017-12-14 12:33:50 -05:00
parent fecf665290
commit adc23bf007
5 changed files with 162 additions and 3 deletions

View File

@@ -25,6 +25,11 @@ namespace Bit.Core.Repositories.SqlServer
throw new NotImplementedException();
}
public Task<ICollection<IEvent>> GetManyByOrganizationAsync(Guid organizationId, DateTime startDate, DateTime endDate)
{
throw new NotImplementedException();
}
public async Task CreateAsync(IEvent e)
{
if(!(e is Event ev))