Add PosViewType enum

This commit is contained in:
Umar Bolatov
2022-05-31 22:25:04 -07:00
parent fca066fe52
commit c917aec401
2 changed files with 14 additions and 4 deletions

View File

@@ -52,12 +52,10 @@ namespace BTCPayServer.Controllers.Greenfield
AppType = AppType.PointOfSale.ToString()
};
Enum.TryParse(request.DefaultView, out PosViewType defaultView);
appData.SetSettings(new PointOfSaleSettings
{
Title = request.Title,
DefaultView = defaultView,
DefaultView = (Services.Apps.PosViewType)request.DefaultView,
ShowCustomAmount = request.ShowCustomAmount,
ShowDiscount = request.ShowDiscount,
EnableTips = request.EnableTips,