You can access /health without a api key now.
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
James Tombleson 2023-06-13 21:32:49 -07:00
parent db6f140858
commit a3b1904923
1 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,13 @@ public class ApiKeyAuthAuthentication
public async Task InvokeAsync(HttpContext context)
{
// allow access to /health without auth
if (context.Request.Path == "/health")
{
await _next(context);
return;
}
if (!context.Request.Headers.TryGetValue(HeaderApiKey, out var extractedApiKey))
{
context.Response.StatusCode = 401;