maquinaweb-shared-auth 0.2.12__py3-none-any.whl → 0.2.13__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.12
3
+ Version: 0.2.13
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
@@ -8,11 +8,11 @@ shared_auth/fields.py,sha256=RAcmFh1D_nkbai_7t_OrPZhfhAipesy5kKnEj4LUvvM,1254
8
8
  shared_auth/managers.py,sha256=Oskz863DGG7nFp6ijZfYVWGCG-Inp6PAP0NakX-x71g,6812
9
9
  shared_auth/middleware.py,sha256=xVoSnlndp6-_cgQADASk2ie8th8e_7SN_7q-lfArx9Y,6124
10
10
  shared_auth/mixins.py,sha256=-D-mDmDI_EjMGpUpkMEp1XTlecvUlCRj-Bch9dm9s_I,7400
11
- shared_auth/models.py,sha256=e8BJ4LYYYqTGc5bZ6ZXVXMv4yRugQ90yYKbZTHez8e0,5197
11
+ shared_auth/models.py,sha256=HB5jCqa7l-P1o6v_Gk043RRjzv87xAXpYQ7jDlz7NZg,5287
12
12
  shared_auth/permissions.py,sha256=CTsd0xE_Z-LYNVwU4jOJLWvlcbdRG8mLkLMEnbmkhJA,2665
13
13
  shared_auth/router.py,sha256=zYidJ7j40lQLrhkCtAQAp-rQLhua_UF0X7SDzYRcV5w,668
14
14
  shared_auth/serializers.py,sha256=TDpuZVsOL-6igINSOOOyELWbTUeet4XWRoBkvcMGjW4,4290
15
- maquinaweb_shared_auth-0.2.12.dist-info/METADATA,sha256=PqvMdICXy-1JHEYCXYRnnE-Bn1iPONBuUdsVdHPYmIk,27151
16
- maquinaweb_shared_auth-0.2.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- maquinaweb_shared_auth-0.2.12.dist-info/top_level.txt,sha256=msyYRy02ZV7zz7GR1raUI5LXGFIFn2TIkgkeKZqKufE,12
18
- maquinaweb_shared_auth-0.2.12.dist-info/RECORD,,
15
+ maquinaweb_shared_auth-0.2.13.dist-info/METADATA,sha256=YijgfRMLll6LeiRmcMBnjYyFKzODMbXUX39BtfJa8l4,27151
16
+ maquinaweb_shared_auth-0.2.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ maquinaweb_shared_auth-0.2.13.dist-info/top_level.txt,sha256=msyYRy02ZV7zz7GR1raUI5LXGFIFn2TIkgkeKZqKufE,12
18
+ maquinaweb_shared_auth-0.2.13.dist-info/RECORD,,
shared_auth/models.py CHANGED
@@ -149,6 +149,9 @@ class SharedUser(AbstractUser):
149
149
  managed = False
150
150
  db_table = USER_TABLE
151
151
  default_related_name = "user"
152
+ name = "user"
153
+ verbose_name = "user"
154
+ verbose_name_plural = "users"
152
155
 
153
156
 
154
157
  class SharedMember(models.Model):