File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 6464OIDC_OP_USER_ENDPOINT = "https://openidconnect.googleapis.com/v1/userinfo"
6565OIDC_OP_JWKS_ENDPOINT = "https://www.googleapis.com/oauth2/v3/certs"
6666OIDC_RP_SIGN_ALGO = "RS256"
67+ OIDC_STORE_ACCESS_TOKEN = True
68+ OIDC_STORE_ID_TOKEN = True
6769LOGIN_REDIRECT_URL = f"https://{ os .environ ['FQDN' ]} "
6870LOGOUT_REDIRECT_URL = f"https://{ os .environ ['FQDN' ]} "
6971LOGIN_URL = f"https://{ os .environ ['FQDN' ]} /oidc/authenticate/"
Original file line number Diff line number Diff line change 66from . import views_gsg
77
88urlpatterns = [
9- path ('' , views .index , name = 'index' ),
109 path ("gsg/" , views_gsg .index , name = "gsg_index" ),
1110 path ("gsg/reports/" , views_gsg .reports , name = "gsg_reports" ),
1211 path ("gsg/billing/" , views_gsg .billing , name = "gsg_billing" ),
1312 path ('oidc/' , include ('mozilla_django_oidc.urls' )),
1413 #path("install/<uuid:pk>/", views.install, name="install")
14+ path ('' , views .index , name = 'index' ),
1515] + static (settings .STATIC_URL , document_root = settings .STATIC_ROOT )
You can’t perform that action at this time.
0 commit comments