1
0
mirror of synced 2024-12-04 19:07:58 +01:00
TaikoLocalServer/TaikoWebUI/Pages/Users.razor.cs

15 lines
361 B
C#
Raw Normal View History

2024-03-16 10:46:06 +01:00
namespace TaikoWebUI.Pages;
2022-09-11 18:33:58 +02: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
}
}