mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
* Reference event service implementation * Fix IReferenceable implementation of Id * add structure to event body
14 lines
304 B
C#
14 lines
304 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Business;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class NoopReferenceEventService : IReferenceEventService
|
|
{
|
|
public Task RaiseEventAsync(ReferenceEvent referenceEvent)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|