mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
* Store Emails * fix test * Update email rules layout * Cleanups * Test cleanups * Add back comments * Update view; add test * Show email rules link even if email settings aren't completed * Validate email addresses * No redirect, display warning * Fix test * Refactoring: Change email argument types to MailAddress * Test fix * Refactoring: Use MailboxAddress * Parse emails properly in controllers and backend Co-authored-by: Dennis Reimann <mail@dennisreimann.de> Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
14 lines
272 B
C#
14 lines
272 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public enum WebhookEventType
|
|
{
|
|
InvoiceCreated,
|
|
InvoiceReceivedPayment,
|
|
InvoiceProcessing,
|
|
InvoiceExpired,
|
|
InvoiceSettled,
|
|
InvoiceInvalid,
|
|
InvoicePaymentSettled,
|
|
}
|
|
}
|