Move PointOfSaleSettings class into own file

This commit is contained in:
Umar Bolatov
2022-02-26 21:19:02 -08:00
parent f3f605a90f
commit bafec0d974
6 changed files with 81 additions and 79 deletions

View File

@@ -115,7 +115,7 @@ namespace BTCPayServer
items = _appService.Parse(cfS.PerksTemplate, cfS.TargetCurrency);
break;
case nameof(AppType.PointOfSale):
var posS = app.GetSettings<UIAppsController.PointOfSaleSettings>();
var posS = app.GetSettings<PointOfSaleSettings>();
currencyCode = posS.Currency;
items = _appService.Parse(posS.Template, posS.Currency);
break;