Updated front-end authentication.

This commit is contained in:
2026-02-22 21:47:34 -05:00
parent 8348603b13
commit 80ca1296e5
13 changed files with 184 additions and 56 deletions

View File

@@ -25,5 +25,5 @@ public class AuthenticationClient(HttpClient http)
return await resp.Content.ReadFromJsonAsync<MeResponse>(cancellationToken: ct);
}
public sealed record MeResponse(string? name, string? id, string? role);
public sealed record MeResponse(string? Name, string? Id, string? Role);
}