mod AuthTest

This commit is contained in:
beo3000 2025-12-24 15:15:33 +01:00
parent 1186764cba
commit d74cdb678d
1 changed files with 6 additions and 1 deletions

View File

@ -47,7 +47,12 @@ else
<LogoutButton/> <LogoutButton/>
</AuthorizeView> </AuthorizeView>
@if(AuthState.Value != null)
{
<ul>
<li>ClubViewer: @AuthState.Value.IsClubViewer</li>
</ul>
}
<MudButton OnClick="Test">TEST</MudButton> <MudButton OnClick="Test">TEST</MudButton>
@code { @code {