Compare commits
No commits in common. "2036b2afabb182fd01c606c162f021b59dcce042" and "d55b232e00ab7061a0080458b91879bbf923be1a" have entirely different histories.
2036b2afab
...
d55b232e00
|
|
@ -2,7 +2,6 @@
|
|||
@using TIAMWebApp.Shared.Application.Interfaces
|
||||
@using AyCode.Interfaces.StorageHandlers
|
||||
@using Microsoft.Extensions.Localization
|
||||
@using Microsoft.AspNetCore.Components.Authorization
|
||||
|
||||
|
||||
|
||||
|
|
@ -100,15 +99,7 @@
|
|||
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<AuthorizeView>
|
||||
<Authorized>
|
||||
<li class="nav-item">
|
||||
<NavLink class="nav-link" href="login">
|
||||
Test
|
||||
</NavLink>
|
||||
</li>
|
||||
</Authorized>
|
||||
</AuthorizeView>
|
||||
|
||||
@if(enableLogin)
|
||||
{
|
||||
if (!myUser && enableLogin)
|
||||
|
|
|
|||
|
|
@ -93,8 +93,7 @@ namespace TIAMSharedUI.Shared.Components
|
|||
serverResult = await UserDataService.Logout(userBasicDetail.RefreshToken);
|
||||
}
|
||||
await SecureStorageHandler.ClearAllSecureStorageAsync();
|
||||
var result = await AuthStateProvider.GetAuthenticationStateAsync();
|
||||
|
||||
await AuthStateProvider.GetAuthenticationStateAsync();
|
||||
sessionService.User = null;
|
||||
sessionService.IsAuthenticated = false;
|
||||
navigationManager.NavigateTo("/");
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ namespace TIAMWebApp.Shared.Application.Services
|
|||
private readonly HttpClient _http;
|
||||
|
||||
|
||||
|
||||
public CustomAuthStateProvider(ISecureStorageHandler localStorage, HttpClient http)
|
||||
{
|
||||
_localStorage = localStorage;
|
||||
|
|
@ -51,7 +52,6 @@ namespace TIAMWebApp.Shared.Application.Services
|
|||
else
|
||||
{
|
||||
state = new AuthenticationState(new ClaimsPrincipal());
|
||||
NotifyAuthenticationStateChanged(Task.FromResult(state));
|
||||
}
|
||||
|
||||
return state;
|
||||
|
|
|
|||
Loading…
Reference in New Issue