2024-03-16 10:46:06 +01:00
|
|
|
|
namespace TaikoWebUI.Pages;
|
2022-09-11 18:33:58 +02:00
|
|
|
|
|
2023-11-11 22:04:11 +01:00
|
|
|
|
public partial class Users
|
2022-09-11 18:33:58 +02:00
|
|
|
|
{
|
2024-05-17 00:32:46 +02:00
|
|
|
|
private List<User>? users;
|
2022-09-11 18:33:58 +02:00
|
|
|
|
|
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
|
|
|
{
|
|
|
|
|
await base.OnInitializedAsync();
|
2024-05-17 00:32:46 +02:00
|
|
|
|
if (AuthService.IsAdmin || !AuthService.LoginRequired)
|
|
|
|
|
{
|
|
|
|
|
users = await Client.GetFromJsonAsync<List<User>>("api/Users");
|
|
|
|
|
}
|
2022-09-11 18:33:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|