mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 15:04:19 +01:00
Create Store redirect to store settings
This commit is contained in:
@@ -121,7 +121,10 @@ namespace BTCPayServer.Controllers
|
|||||||
var store = await _Repo.CreateStore(GetUserId(), vm.Name);
|
var store = await _Repo.CreateStore(GetUserId(), vm.Name);
|
||||||
CreatedStoreId = store.Id;
|
CreatedStoreId = store.Id;
|
||||||
StatusMessage = "Store successfully created";
|
StatusMessage = "Store successfully created";
|
||||||
return RedirectToAction(nameof(ListStores));
|
return RedirectToAction(nameof(StoresController.UpdateStore), "Stores", new
|
||||||
|
{
|
||||||
|
storeId = store.Id
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async Task<string> GetBalanceString((BTCPayWallet Wallet, DerivationStrategyBase DerivationStrategy) _)
|
private static async Task<string> GetBalanceString((BTCPayWallet Wallet, DerivationStrategyBase DerivationStrategy) _)
|
||||||
|
|||||||
Reference in New Issue
Block a user