- Moves authentication back to a /Authenticate page route - Flatten the namespaces of page components - Implement top-level layouts as windows - Move handling of redirecting to /Authenticate with component inside of an AuthenticatedLayout - Use individiual injected services instead of SDK.Client - Wipe out tokens on logout - Process logout even if server can't be reached
12 lines
No EOL
440 B
Text
12 lines
No EOL
440 B
Text
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.JSInterop
|
|
@using LANCommander.Launcher
|
|
@using LANCommander.Launcher.UI.Components
|
|
@using LANCommander.Launcher.UI.Layouts
|
|
@using LANCommander.Launcher.Services
|
|
@using AntDesign |