diff --git a/Wonky.Client/Wonky.Client.csproj b/Wonky.Client/Wonky.Client.csproj index e048bcf9..0897124d 100644 --- a/Wonky.Client/Wonky.Client.csproj +++ b/Wonky.Client/Wonky.Client.csproj @@ -34,6 +34,10 @@ + + + PreserveNewest + diff --git a/Wonky.Client/wwwroot/appsettings.json b/Wonky.Client/wwwroot/appsettings.json index bb89451a..d48bdb71 100644 --- a/Wonky.Client/wwwroot/appsettings.json +++ b/Wonky.Client/wwwroot/appsettings.json @@ -1,15 +1,15 @@ { "appInfo": { "name": "Wonky Online", - "version": "138.13", - "rc": false, + "version": "138.15", + "rc": true, "sandBox": false, "image": "grumpy-coder.png" }, "Logging": { "LogLevel": { - "Default": "Information", - "System": "Information", + "Default": "Debug", + "System": "Debug", "Microsoft": "Information" }, "Debug": { diff --git a/Wonky.Client/wwwroot/appsettings.release.json b/Wonky.Client/wwwroot/appsettings.release.json new file mode 100644 index 00000000..d50b7b50 --- /dev/null +++ b/Wonky.Client/wwwroot/appsettings.release.json @@ -0,0 +1,58 @@ +{ + "appInfo": { + "name": "Wonky Online", + "version": "138.15", + "rc": false, + "sandBox": false, + "image": "grumpy-coder.png" + }, + "Logging": { + "LogLevel": { + "Default": "None", + "System": "None", + "Microsoft": "None" + }, + "Debug": { + "LogLevel": { + "Default": "Critical" + } + } + }, + "apiConfig": { + "baseUrl": "https://zeta.innotec.dk", + "catalog": "api/v2/catalog/country", + "crmCustomers": "api/v2/crm/companies", + "crmInventoryExt": "history/inventory", + "crmProductExt": "history/products", + "crmReports": "api/v2/crm/advisors/reports", + "crmActivities": "api/v2/crm/advisors/activities", + "crmTasks": "api/v2/crm/advisors/tasks", + "crmWorkplaceExt": "workplaces", + "officeBase": "api/v2/office", + "officeActivities": "api/v2/office/activities", + "officeAdvisors": "api/v2/office/users/advisors", + "officeCustomers": "api/v2/office/customers", + "officeReports": "api/v2/office/reports", + "officeUsers": "api/v2/office/users/admin", + "servicesGlsId": "", + "servicesGlsTrackUrl": "https://www.gls-group.eu/276-I-PORTAL-WEB/content/GLS/DK01/DA/5004.htm?txtAction=71000&txtRefNo=", + "servicesMail": "api/v2/services/sendmail", + "servicesSms": "api/v2/services/sms", + "servicesVatDk": "api/v2/services/virk", + "serviceVatEu": "api/v2/services/vies", + "servicesVatNo": "api/v2/services/brReg", + "servicesAuth": "v2/token", + "syncRpc": "api/v2/rpc", + "syncRpcInvoiceExt": "invoices", + "systemDocStringUrl": "api/v2/admin/doc", + "systemLabels": "api/v2/admin/doc/labels", + "systemTexts": "api/v2/admin/doc/texts", + "userInfoClient": "/api/v2/client/users", + "userInfoAuth": "api/v2/auth/userinfo", + "userManager": "api/v2/app/manage/users", + "userManagerSetPasswd": "api/v2/app/manage/passwd", + "userRoles": "api/v2/app/manage/roles", + "userSupport": "/api/v2/app/manage/support", + "warehouse": "api/v2/warehouse/packages" + } +}