style: replace fully-qualified AllowAnonymous with @using + short form in Home and TracksView

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