mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
Redirect to dashboard instead of apps list on app delete (#3941)
close #3898
This commit is contained in:
@@ -164,7 +164,7 @@ namespace BTCPayServer.Controllers
|
||||
if (await _appService.DeleteApp(app))
|
||||
TempData[WellKnownTempData.SuccessMessage] = "App deleted successfully.";
|
||||
|
||||
return RedirectToAction(nameof(ListApps), new { storeId = app.StoreDataId });
|
||||
return RedirectToAction(nameof(UIStoresController.Dashboard), "UIStores", new { storeId = app.StoreDataId });
|
||||
}
|
||||
|
||||
async Task<string> GetStoreDefaultCurrentIfEmpty(string storeId, string currency)
|
||||
|
||||
Reference in New Issue
Block a user