Files
samuele 5722ad4167 WRKLOG 8.0
- porting blazor 8.0
- riorganizzazione area components
- add componenti da 6
- spostamento ver 6 a old (migrata comunque)
2024-09-04 15:28:37 +02:00

20 lines
471 B
Plaintext

@page "/ResetAll"
@page "/reset-all"
@using GPW.CORE.WRKLOG.Data;
<h3>ResetAll</h3>
@inject LicenseService LicServ
@inject NavigationManager NavMan
<LoadingData DisplaySize="LoadingData.CtrlSize.Large" DisplayMode="LoadingData.SpinMode.Growl"></LoadingData>
@code {
protected override async Task OnInitializedAsync()
{
var resetDone = await LicServ.RefreshLicense();
await Task.Delay(1000);
NavMan.NavigateTo("ForceReset");
}
}