maquinaweb-shared-auth 0.2.22__py3-none-any.whl → 0.2.23__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.

Potentially problematic release.


This version of maquinaweb-shared-auth might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maquinaweb-shared-auth
3
- Version: 0.2.22
3
+ Version: 0.2.23
4
4
  Summary: Models read-only para autenticação compartilhada entre projetos Django.
5
5
  Author-email: Seu Nome <seuemail@dominio.com>
6
6
  License: MIT
@@ -11,10 +11,10 @@ shared_auth/mixins.py,sha256=BSYNTWYjLRGuxfy7x-uAaNZmrTMsm67ogAQzjrU2DoQ,7388
11
11
  shared_auth/models.py,sha256=n6-m8DD8PA7HlDE9crSzpeiZjaOng1Yw6eyV3sfFct0,6185
12
12
  shared_auth/permissions.py,sha256=FNIp12ePOUlXVp26zNMAyEtzX9kwyP7RuNIgaaCXtPA,2671
13
13
  shared_auth/router.py,sha256=zYidJ7j40lQLrhkCtAQAp-rQLhua_UF0X7SDzYRcV5w,668
14
- shared_auth/serializers.py,sha256=uhSrcmFgBUnIWUiKymQrsSNpFDTj3j1Eged2lPG2M0s,4588
14
+ shared_auth/serializers.py,sha256=_xxUXsAweOSYDtpQjBwVxvDPwGoqZASPEV1OK640Usc,4834
15
15
  shared_auth/urls.py,sha256=591wWEWJPaHEGkcOZ8yvfgxddRyOcZLgOc0vNtF7XRI,289
16
16
  shared_auth/views.py,sha256=2hyLnYSWUscfq-jVcskt-ukzDt4vg6IXeKjRDRu9RXk,1519
17
- maquinaweb_shared_auth-0.2.22.dist-info/METADATA,sha256=b8T2QHGmwsdvnIpSrDfptw3cbPmUCZ57ra3Vl8RJKc0,27151
18
- maquinaweb_shared_auth-0.2.22.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- maquinaweb_shared_auth-0.2.22.dist-info/top_level.txt,sha256=msyYRy02ZV7zz7GR1raUI5LXGFIFn2TIkgkeKZqKufE,12
20
- maquinaweb_shared_auth-0.2.22.dist-info/RECORD,,
17
+ maquinaweb_shared_auth-0.2.23.dist-info/METADATA,sha256=_okiuYSH9QzR4_WUWqmRVS98b0pyh_xH1Wjs-beN-ss,27151
18
+ maquinaweb_shared_auth-0.2.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ maquinaweb_shared_auth-0.2.23.dist-info/top_level.txt,sha256=msyYRy02ZV7zz7GR1raUI5LXGFIFn2TIkgkeKZqKufE,12
20
+ maquinaweb_shared_auth-0.2.23.dist-info/RECORD,,
@@ -58,7 +58,18 @@ class OrganizationSerializer(serializers.ModelSerializer):
58
58
  class UserSerializer(serializers.ModelSerializer):
59
59
  class Meta:
60
60
  model = User
61
- fields = "__all__"
61
+ fields = [
62
+ "id",
63
+ "username",
64
+ "first_name",
65
+ "last_name",
66
+ "email",
67
+ "is_active",
68
+ "is_staff",
69
+ "is_superuser",
70
+ "date_joined",
71
+ "last_login",
72
+ ]
62
73
 
63
74
  class UserSerializerMixin:
64
75
  """