mirror of
https://github.com/bitwarden/server.git
synced 2025-06-25 13:18:48 -05:00

* [PM-17562] Update documentation for event integrations * Fix SonarQube suggestion, bring ASB event listener in line with integration listener * Apply suggestions from code review Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * Updates to README - PR fixes, additional context, tense alignment * Fix the formatting for inlined code snippets * Add links to different sections; remove inline code formatting in favor of single bacticks for JSON --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
10 lines
253 B
C#
10 lines
253 B
C#
using Bit.Core.AdminConsole.Models.Data.EventIntegrations;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IEventIntegrationPublisher : IAsyncDisposable
|
|
{
|
|
Task PublishAsync(IIntegrationMessage message);
|
|
Task PublishEventAsync(string body);
|
|
}
|