dj-jwt-auth 1.4.0__py3-none-any.whl → 1.4.1__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.4.0
3
+ Version: 1.4.1
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
@@ -6,14 +6,14 @@ django_jwt/pkce.py,sha256=HYIQI0vKSmQkYIqTj3cciIT01ldkjhqlYiXkYcnNSGc,711
6
6
  django_jwt/roles.py,sha256=SaHK3o8T8USS4ZhG4SrHPlZQV2lMb2t1UZHT6IQtBvA,143
7
7
  django_jwt/settings.py,sha256=NhA0froKOtkAD4QeO1TpEHdEPY-7z85wue9ceA8-sJ4,1552
8
8
  django_jwt/urls.py,sha256=OoKbJ2kf41tuDBnVjK5TTW4aVt9bhRaz59HFlUOAins,251
9
- django_jwt/user.py,sha256=dTsB95TBgbqZLKMjKPSl9MiXgrJkdEyayh6f211wbwI,4930
9
+ django_jwt/user.py,sha256=DW87Vt22rt-DOFH6wmgHSbcoHPa19yuAkGijhhu0uxA,5011
10
10
  django_jwt/utils.py,sha256=Gz8cH0cD3y_cvW8FwRoCFgShBrYvcB7XBF0GWx0n2qQ,1485
11
11
  django_jwt/views.py,sha256=Mwcd70Qrp5aeZYgXWBMzkm8DD01Tf1nAVlfq6wIlhQY,3705
12
12
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  tests/models.py,sha256=K5e0QCgyZeLLHS6i3KRMQHooql47g7qqni7f9tKQrIY,251
14
14
  tests/test.py,sha256=OzfDEIgbDZvCinV_terIYEYjq7vPvhQQIqa0qgQNtxo,7405
15
15
  tests/urls.py,sha256=D5FhDSVAudurkrpkCZZPnDvgXSgifwFVB3nAlYBg7uQ,212
16
- dj_jwt_auth-1.4.0.dist-info/METADATA,sha256=Qhd171r14xnZhnRUCktDQJFQMjQ_wuA8ZnabpkxG7K8,4073
17
- dj_jwt_auth-1.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
18
- dj_jwt_auth-1.4.0.dist-info/top_level.txt,sha256=58O7TdK-yECZcbmPc52KNlBFpjIUlENuZubCxaSOxus,17
19
- dj_jwt_auth-1.4.0.dist-info/RECORD,,
16
+ dj_jwt_auth-1.4.1.dist-info/METADATA,sha256=-9vahYCqTZgczLROxpUTROC5citx4QCQzJkN5fg5CME,4073
17
+ dj_jwt_auth-1.4.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
18
+ dj_jwt_auth-1.4.1.dist-info/top_level.txt,sha256=58O7TdK-yECZcbmPc52KNlBFpjIUlENuZubCxaSOxus,17
19
+ dj_jwt_auth-1.4.1.dist-info/RECORD,,
django_jwt/user.py CHANGED
@@ -41,6 +41,7 @@ class UserHandler:
41
41
  self.kwargs.update(
42
42
  {ca_key: user_data[kc_key] for kc_key, ca_key in settings.OIDC_USER_MAPPING.items() if kc_key in user_data}
43
43
  )
44
+ log.info(f"User data: {self.kwargs}, access_token: {self.access_token}")
44
45
 
45
46
  def _update_user(self, user):
46
47
  """Update user fields if they are changed"""