mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-16 09:37:03 +02:00
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:
parent
331d2e575a
commit
00f87168e5
21 changed files with 1296 additions and 59 deletions
12
src/djangooidc/urls.py
Normal file
12
src/djangooidc/urls.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
# coding: utf-8
|
||||
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("login/", views.openid, name="openid"),
|
||||
path("callback/login/", views.login_callback, name="openid_login_callback"),
|
||||
path("logout/", views.logout, name="logout"),
|
||||
path("callback/logout/", views.logout_callback, name="openid_logout_callback"),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue