maquinaweb-shared-auth 0.2.1__py3-none-any.whl → 0.2.2__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.
- {maquinaweb_shared_auth-0.2.1.dist-info → maquinaweb_shared_auth-0.2.2.dist-info}/METADATA +1 -1
- {maquinaweb_shared_auth-0.2.1.dist-info → maquinaweb_shared_auth-0.2.2.dist-info}/RECORD +5 -5
- shared_auth/models.py +0 -4
- {maquinaweb_shared_auth-0.2.1.dist-info → maquinaweb_shared_auth-0.2.2.dist-info}/WHEEL +0 -0
- {maquinaweb_shared_auth-0.2.1.dist-info → maquinaweb_shared_auth-0.2.2.dist-info}/top_level.txt +0 -0
|
@@ -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=
|
|
11
|
+
shared_auth/models.py,sha256=feSWcil3nDEOAm_T4kTZSRLFmtmsuGjAadoKIpyUYAI,5159
|
|
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.
|
|
16
|
-
maquinaweb_shared_auth-0.2.
|
|
17
|
-
maquinaweb_shared_auth-0.2.
|
|
18
|
-
maquinaweb_shared_auth-0.2.
|
|
15
|
+
maquinaweb_shared_auth-0.2.2.dist-info/METADATA,sha256=yo7CjlyCwraTwb__Ztji-Vq_WZklbf_D4UMrgNJhmPk,27150
|
|
16
|
+
maquinaweb_shared_auth-0.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
maquinaweb_shared_auth-0.2.2.dist-info/top_level.txt,sha256=msyYRy02ZV7zz7GR1raUI5LXGFIFn2TIkgkeKZqKufE,12
|
|
18
|
+
maquinaweb_shared_auth-0.2.2.dist-info/RECORD,,
|
shared_auth/models.py
CHANGED
|
@@ -29,7 +29,6 @@ class SharedToken(models.Model):
|
|
|
29
29
|
class Meta:
|
|
30
30
|
managed = False
|
|
31
31
|
db_table = "authtoken_token"
|
|
32
|
-
app_label = "shared_auth"
|
|
33
32
|
|
|
34
33
|
def __str__(self):
|
|
35
34
|
return self.key
|
|
@@ -75,7 +74,6 @@ class SharedOrganization(models.Model):
|
|
|
75
74
|
class Meta:
|
|
76
75
|
managed = False # CRITICAL: Não gera migrations
|
|
77
76
|
db_table = ORGANIZATION_TABLE
|
|
78
|
-
app_label = "shared_auth"
|
|
79
77
|
|
|
80
78
|
def __str__(self):
|
|
81
79
|
return self.fantasy_name or self.name or f"Org #{self.pk}"
|
|
@@ -150,7 +148,6 @@ class SharedUser(AbstractUser):
|
|
|
150
148
|
class Meta:
|
|
151
149
|
managed = False
|
|
152
150
|
db_table = USER_TABLE
|
|
153
|
-
app_label = "shared_auth"
|
|
154
151
|
|
|
155
152
|
|
|
156
153
|
class SharedMember(models.Model):
|
|
@@ -168,7 +165,6 @@ class SharedMember(models.Model):
|
|
|
168
165
|
class Meta:
|
|
169
166
|
managed = False
|
|
170
167
|
db_table = MEMBER_TABLE
|
|
171
|
-
app_label = "shared_auth"
|
|
172
168
|
|
|
173
169
|
def __str__(self):
|
|
174
170
|
return f"Member: User {self.user_id} - Org {self.organization_id}"
|
|
File without changes
|
{maquinaweb_shared_auth-0.2.1.dist-info → maquinaweb_shared_auth-0.2.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|