Update API endpoint for setting app user type

This commit is contained in:
Max Mannstein 2025-08-09 11:01:08 +02:00
parent 5c3e0b87c5
commit 52dc491ba5

View File

@ -1540,7 +1540,7 @@ namespace gehGassiApp.Core.Services
var stringContent = new StringContent(json, Encoding.UTF8, "application/json"); var stringContent = new StringContent(json, Encoding.UTF8, "application/json");
var serverResult = await _httpClient.PostAsync($"api/Account/SetAppUserTypeEx", stringContent, token).ConfigureAwait(false); var serverResult = await _httpClient.PostAsync($"api/Account/SetAppUserTypeNoMango", stringContent, token).ConfigureAwait(false);
if (serverResult.IsSuccessStatusCode) if (serverResult.IsSuccessStatusCode)
{ {