dj-jwt-auth 1.9.3__tar.gz → 1.9.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/PKG-INFO +1 -1
  2. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/dj_jwt_auth.egg-info/PKG-INFO +1 -1
  3. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/views.py +1 -1
  4. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/setup.cfg +1 -1
  5. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/MANIFEST.in +0 -0
  6. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/README.md +0 -0
  7. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/dj_jwt_auth.egg-info/SOURCES.txt +0 -0
  8. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/dj_jwt_auth.egg-info/dependency_links.txt +0 -0
  9. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/dj_jwt_auth.egg-info/requires.txt +0 -0
  10. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/dj_jwt_auth.egg-info/top_level.txt +0 -0
  11. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/__init__.py +0 -0
  12. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/config.py +0 -0
  13. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/exceptions.py +0 -0
  14. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/middleware.py +0 -0
  15. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/pkce.py +0 -0
  16. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/roles.py +0 -0
  17. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/settings.py +0 -0
  18. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/templates/admin/login.html +0 -0
  19. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/templates/django-jwt-index.html +0 -0
  20. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/urls.py +0 -0
  21. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/user.py +0 -0
  22. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/django_jwt/utils.py +0 -0
  23. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/pyproject.toml +0 -0
  24. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/setup.py +0 -0
  25. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/tests/__init__.py +0 -0
  26. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/tests/models.py +0 -0
  27. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/tests/test.py +0 -0
  28. {dj_jwt_auth-1.9.3 → dj_jwt_auth-1.9.4}/tests/urls.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.9.3
3
+ Version: 1.9.4
4
4
  Summary: A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  Home-page: https://www.example.com/
6
6
  Author: Konstantin Seleznev
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.9.3
3
+ Version: 1.9.4
4
4
  Summary: A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  Home-page: https://www.example.com/
6
6
  Author: Konstantin Seleznev
@@ -82,7 +82,7 @@ class CallbackView(View):
82
82
  log.warning(f"OIDC No code or state in the request {request.GET}")
83
83
  return self.fail(request, "No code or state in the request")
84
84
 
85
- redirect_uri = request.build_absolute_uri(self.callback_view_name)
85
+ redirect_uri = request.build_absolute_uri(reverse(self.callback_view_name))
86
86
  if state := cache.get(state):
87
87
  token = get_access_token(code, redirect_uri, state, self.client_id)
88
88
  self.payload = oidc_handler.decode_token(token)
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = dj-jwt-auth
3
- version = 1.9.3
3
+ version = 1.9.4
4
4
  description = A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  long_description = file: README.md
6
6
  url = https://www.example.com/
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes