fix: remove ipn via email #1241 (#1337)

* fix: remove ipn via email #1241

* fix: remove ipn via email #1241
This commit is contained in:
hannes
2020-02-24 20:21:03 +08:00
committed by GitHub
parent a354f7d9dd
commit f097ecdc80
13 changed files with 1 additions and 57 deletions

View File

@@ -32,9 +32,6 @@ namespace BTCPayServer.Models.AppViewModels
[Display(Name = "Callback Notification Url")]
[Uri]
public string NotificationUrl { get; set; }
[Display(Name = "Invoice IPN Notification")]
[EmailAddress]
public string NotificationEmail { get; set; }
[Required]
[MaxLength(30)]
@@ -84,7 +81,6 @@ namespace BTCPayServer.Models.AppViewModels
}
}, nameof(SelectListItem.Value), nameof(SelectListItem.Text), RedirectAutomatically);
public bool NotificationEmailWarning { get; set; }
public string EmbeddedCSS { get; set; }
public string Description { get; set; }
}