mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
Allow User to delete own account (#2949)
* Allow User to delete own account * Add User delete e2e test * fix test * Apply suggestions from code review Co-authored-by: d11n <mail@dennisreimann.de> Co-authored-by: d11n <mail@dennisreimann.de>
This commit is contained in:
@@ -8,7 +8,7 @@ namespace BTCPayServer.Models
|
||||
|
||||
public ConfirmModel() {}
|
||||
|
||||
public ConfirmModel(string title, string desc, string action = null, string buttonClass = ButtonClassDefault)
|
||||
public ConfirmModel(string title, string desc, string action = null, string buttonClass = ButtonClassDefault, string actionUrl = null)
|
||||
{
|
||||
Title = title;
|
||||
Description = desc;
|
||||
@@ -19,6 +19,8 @@ namespace BTCPayServer.Models
|
||||
{
|
||||
DescriptionHtml = true;
|
||||
}
|
||||
|
||||
ActionUrl = actionUrl;
|
||||
}
|
||||
|
||||
public string Title { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user