19 lines
304 B
Plaintext
19 lines
304 B
Plaintext
@page "/ResetCache"
|
|
|
|
@using GWMS.UI.Data
|
|
@inject GWMSDataService DataService
|
|
@inject NavigationManager NavManager
|
|
|
|
<h3>ResetCache</h3>
|
|
|
|
|
|
@code {
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
await DataService.FlushRedisCache();
|
|
|
|
NavManager.NavigateTo("Index");
|
|
}
|
|
}
|