Rename WebhookNotificationManager -> WebhookSender

This commit is contained in:
nicolas.dorier
2022-01-11 13:15:48 +09:00
parent cb295e20d4
commit 6999abe1ca
6 changed files with 15 additions and 15 deletions

View File

@@ -26,14 +26,14 @@ namespace BTCPayServer.Controllers.GreenField
[EnableCors(CorsPolicies.All)]
public class StoreWebhooksController : ControllerBase
{
public StoreWebhooksController(StoreRepository storeRepository, WebhookNotificationManager webhookNotificationManager)
public StoreWebhooksController(StoreRepository storeRepository, WebhookSender webhookNotificationManager)
{
StoreRepository = storeRepository;
WebhookNotificationManager = webhookNotificationManager;
}
public StoreRepository StoreRepository { get; }
public WebhookNotificationManager WebhookNotificationManager { get; }
public WebhookSender WebhookNotificationManager { get; }
[HttpGet("~/api/v1/stores/{storeId}/webhooks/{webhookId?}")]
public async Task<IActionResult> ListWebhooks(string storeId, string webhookId)