├── .flake8 ├── .github └── workflows │ ├── ci.yaml │ └── python-publish.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── asgi.py ├── django_descope ├── __init__.py ├── apps.py ├── authentication.py ├── conf.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── admin │ │ └── descope_login.html ├── templatetags │ ├── __init__.py │ └── descope.py ├── test_store_jwt.py ├── urls.py └── views.py ├── example_app ├── __init__.py ├── static │ ├── css │ │ └── style.css │ └── images │ │ └── logo.png ├── templates │ └── descope_login.html ├── test_admin.py ├── urls.py └── views.py ├── manage.py ├── poetry.lock ├── pyproject.toml ├── renovate.json ├── settings.py ├── tox.ini ├── urls.py └── wsgi.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/.github/workflows/python-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/README.md -------------------------------------------------------------------------------- /asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/asgi.py -------------------------------------------------------------------------------- /django_descope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/__init__.py -------------------------------------------------------------------------------- /django_descope/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/apps.py -------------------------------------------------------------------------------- /django_descope/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/authentication.py -------------------------------------------------------------------------------- /django_descope/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/conf.py -------------------------------------------------------------------------------- /django_descope/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/middleware.py -------------------------------------------------------------------------------- /django_descope/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_descope/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_descope/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/models.py -------------------------------------------------------------------------------- /django_descope/templates/admin/descope_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/templates/admin/descope_login.html -------------------------------------------------------------------------------- /django_descope/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_descope/templatetags/descope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/templatetags/descope.py -------------------------------------------------------------------------------- /django_descope/test_store_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/test_store_jwt.py -------------------------------------------------------------------------------- /django_descope/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/urls.py -------------------------------------------------------------------------------- /django_descope/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/django_descope/views.py -------------------------------------------------------------------------------- /example_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/example_app/static/css/style.css -------------------------------------------------------------------------------- /example_app/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/example_app/static/images/logo.png -------------------------------------------------------------------------------- /example_app/templates/descope_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/example_app/templates/descope_login.html -------------------------------------------------------------------------------- /example_app/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/example_app/test_admin.py -------------------------------------------------------------------------------- /example_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/example_app/urls.py -------------------------------------------------------------------------------- /example_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/example_app/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/manage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/tox.ini -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/urls.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/django-descope/HEAD/wsgi.py --------------------------------------------------------------------------------