fix(routing): add [AllowAnonymous] to public pages so static-SSR AuthorizeRouteView doesn't block unauthenticated requests

This commit is contained in:
Daniel Harvey
2026-05-19 00:03:48 -04:00
parent 9689de462d
commit 4379883048
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
@page "/"
@using DeepDrftWeb.Client.Services
@attribute [Microsoft.AspNetCore.Authorization.AllowAnonymous]
<PageTitle>Deep DRFT - Electronic Music Collective</PageTitle>
@@ -1,4 +1,5 @@
@page "/tracks"
@attribute [Microsoft.AspNetCore.Authorization.AllowAnonymous]
@using DeepDrftWeb.Client.Controls