Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static WebApplication ConfigureLiveLogin(this WebApplication app) {
{
await context.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme);
await context.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
return Results.Redirect("/");
return Results.Redirect("/entry");
}).RequireAuthorization();
return app;
}
Expand All @@ -55,7 +55,7 @@ public static WebApplication ConfigureTestLogin(this WebApplication app) {
app.MapGet("/logout", (HttpContext context) =>
{
// In test mode, just redirect to home
return Results.Redirect("/");
return Results.Redirect("/entry");
}).RequireAuthorization();

return app;
Expand Down
Loading