health check to /health, updated testing of /health, cleaned up extraneous debug logging

This commit is contained in:
David Kennedy 2024-02-07 13:08:26 -05:00
parent 7b64929d60
commit 2a676260c6
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
6 changed files with 39 additions and 20 deletions

View file

@ -74,7 +74,7 @@ urlpatterns = [
views.ApplicationWithdrawn.as_view(),
name="application-withdrawn",
),
path("health/", views.health),
path("health", views.health, name="health"),
path("openid/", include("djangooidc.urls")),
path("request/", include((application_urls, APPLICATION_NAMESPACE))),
path("api/v1/available/", available, name="available"),