1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-17 03:42:50 +02:00
Minecraft-Phantom-Panel/Web/Phantom.Web/Pages/Logout.razor
2023-12-05 14:27:55 +01:00

12 lines
200 B
Plaintext

@page "/logout"
@using Phantom.Web.Services.Authentication
@inject UserLoginManager LoginManager
@code {
protected override Task OnInitializedAsync() {
return LoginManager.LogOut();
}
}