mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
12 lines
466 B
Plaintext
12 lines
466 B
Plaintext
@using Aaru.Server.New.Components.Account.Shared
|
|
@using Aaru.Server.New.Components.Layout
|
|
<Router AppAssembly="typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<AuthorizeRouteView DefaultLayout="typeof(MainLayout)" RouteData="routeData">
|
|
<NotAuthorized>
|
|
<RedirectToLogin/>
|
|
</NotAuthorized>
|
|
</AuthorizeRouteView>
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1"/>
|
|
</Found>
|
|
</Router> |