Add Login.gov *\o/*

This commit incldues a wrapper application which handles
the Private Key JWT method of authenticating via OpenID
Connect using the underlying pyoidc library.
This commit is contained in:
Seamus Johnston 2022-09-13 09:15:40 -05:00
parent 331d2e575a
commit 00f87168e5
No known key found for this signature in database
GPG key ID: 2F21225985069105
21 changed files with 1296 additions and 59 deletions

View file

@ -11,9 +11,12 @@ from django.urls import include, path
from registrar.views import health, index
urlpatterns = [
path("", index.index, name="home"),
path("admin/", admin.site.urls),
path("", index.index),
path("health/", health.health),
path("openid/", include("djangooidc.urls")),
# these views respect the DEBUG setting
path("__debug__/", include("debug_toolbar.urls")),
]
if settings.DEBUG: