fix get user dropdown pagesize
This commit is contained in:
parent
28538e22db
commit
850dc4c8a1
|
@ -9,7 +9,7 @@
|
|||
<Identity
|
||||
Name="ac171214-3336-4e02-845d-9bdc107cce71"
|
||||
Publisher="CN=pcut, O=PCUT, L=HN, S=HN, C=VN"
|
||||
Version="1.3.4.0" />
|
||||
Version="1.3.4.4" />
|
||||
|
||||
<mp:PhoneIdentity PhoneProductId="ac171214-3336-4e02-845d-9bdc107cce71" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ namespace PCUT.ViewModels
|
|||
{
|
||||
try
|
||||
{
|
||||
var response = await httpClient.GetAsync(Api.Users);
|
||||
var response = await httpClient.GetAsync($"{Api.Users}?page=1&pageSize={int.MaxValue}");
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
var apiResponse = await response.DeserializeObjectAsync<PaginationResponse<IEnumerable<UsersModel>>>();
|
||||
|
|
Loading…
Reference in New Issue