1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 09:02:48 -05:00

events for collections, groups, and org users

This commit is contained in:
Kyle Spearrin
2017-12-01 16:00:30 -05:00
parent a8fefb54c4
commit 28770d3761
20 changed files with 182 additions and 27 deletions

View File

@ -12,6 +12,26 @@ namespace Bit.Core.Services
return Task.FromResult(0);
}
public Task LogCollectionEventAsync(Collection collection, EventType type)
{
return Task.FromResult(0);
}
public Task LogGroupEventAsync(Group group, EventType type)
{
return Task.FromResult(0);
}
public Task LogOrganizationEventAsync(Organization organization, EventType type)
{
return Task.FromResult(0);
}
public Task LogOrganizationUserEventAsync(OrganizationUser organizationUser, EventType type)
{
return Task.FromResult(0);
}
public Task LogUserEventAsync(Guid userId, EventType type)
{
return Task.FromResult(0);