30 lines
989 B
Plaintext
30 lines
989 B
Plaintext
@inject NavigationManager NavigationManager
|
|
|
|
<CascadingAuthenticationState>
|
|
<Router AppAssembly="@typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)">
|
|
<NotAuthorized>
|
|
@{
|
|
var returnUrl = NavigationManager.ToBaseRelativePath(NavigationManager.Uri);
|
|
|
|
NavigationManager.NavigateTo($"login?redirectUri={returnUrl}", forceLoad: true);
|
|
|
|
}
|
|
|
|
</NotAuthorized>
|
|
<Authorizing>
|
|
Wait...
|
|
</Authorizing>
|
|
</AuthorizeRouteView>
|
|
</Found>
|
|
<NotFound>
|
|
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
<p>Sorry, there's nothing at this address.</p>
|
|
</LayoutView>
|
|
|
|
</NotFound>
|
|
|
|
</Router>
|
|
</CascadingAuthenticationState> |