remove xframe

This commit is contained in:
Kukks
2023-03-01 18:36:33 +01:00
parent 1d682439bd
commit e2ee62acc2
2 changed files with 1 additions and 3 deletions

View File

@@ -256,7 +256,6 @@ namespace BTCPayServer.Plugins.Wabisabi
return View(viewModel);
}
[XFrameOptions(XFrameOptionsAttribute.XFrameOptions.SameOrigin)]
[HttpGet("spend")]
public async Task<IActionResult> Spend(string storeId)
{
@@ -268,7 +267,6 @@ namespace BTCPayServer.Plugins.Wabisabi
return View(new SpendViewModel() { });
}
[XFrameOptions(XFrameOptionsAttribute.XFrameOptions.SameOrigin)]
[HttpPost("spend")]
public async Task<IActionResult> Spend(string storeId, SpendViewModel spendViewModel, string command)
{