feat(Permission) Added start of the Storage feature. Detailed/Plain default toggle

This commit is contained in:
2022-04-24 19:33:18 -04:00
parent 8a4d00054a
commit afaafbe713
20 changed files with 538 additions and 65 deletions
+5 -1
View File
@@ -1,4 +1,7 @@
@inject IVariableService VariableService
@using Microsoft.AspNetCore.Components.ProtectedBrowserStorage
@inject IVariableService VariableService
@inject IStorageService StorageService
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
@@ -76,6 +79,7 @@
protected override async Task OnInitializedAsync()
{
await VariableService.Load();
await StorageService.Load();
isLoaded = true;
StateHasChanged();
}