When creating PoS app, redirect to settings. When updating an app, redirect to List of apps.

This commit is contained in:
nicolas.dorier
2018-07-05 21:11:18 +09:00
parent 7210eebeca
commit 5af14ef2ec
2 changed files with 5 additions and 2 deletions

View File

@@ -134,7 +134,7 @@ namespace BTCPayServer.Controllers
});
await UpdateAppSettings(app);
StatusMessage = "App updated";
return RedirectToAction(nameof(UpdatePointOfSale));
return RedirectToAction(nameof(ListApps));
}
[HttpGet]