Deconflict namespaces

Pluralize namespaces in client to keep from having to qualify domain namespace
This commit is contained in:
2021-02-07 16:53:36 -05:00
parent 8350d0bddf
commit e63a12b774
12 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
@page "/citizen/log-off"
@inject NavigationManager nav
@inject AppState state
@inject IToastService toast
@code {
protected override void OnInitialized()
{
state.Jwt = "";
state.User = null;
toast.ShowSuccess("Have a Nice Day!", "Log Off Successful");
nav.NavigateTo("/");
}
}