peppelinux / django-oidc-op

A Django implementation of an OIDC Provider on top of IdentityPython jwtconnect stack.
Apache License 2.0
13 stars 4 forks source link

Session DB #8

Closed peppelinux closed 4 years ago

peppelinux commented 4 years ago

Handle OIDC op sessions in a Django way.

Notes: in oidcendpoint.endpoint_context do_session_db see oidcendpoint.session.create_session_db and oidcendpoint.sso_db

Put it in application.py ->init_oidc_op_endpoints->

endpoint_context = EndpointContext(_server_info_config, keyjar=_kj,
                                   cwd=settings.BASE_DIR)
peppelinux commented 4 years ago

implemented