maquinaweb-shared-auth 0.2.60__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.
- maquinaweb_shared_auth-0.2.60.dist-info/METADATA +1003 -0
- maquinaweb_shared_auth-0.2.60.dist-info/RECORD +28 -0
- maquinaweb_shared_auth-0.2.60.dist-info/WHEEL +5 -0
- maquinaweb_shared_auth-0.2.60.dist-info/top_level.txt +1 -0
- shared_auth/__init__.py +7 -0
- shared_auth/abstract_models.py +897 -0
- shared_auth/app.py +9 -0
- shared_auth/authentication.py +55 -0
- shared_auth/conf.py +33 -0
- shared_auth/decorators.py +122 -0
- shared_auth/exceptions.py +23 -0
- shared_auth/fields.py +51 -0
- shared_auth/management/__init__.py +0 -0
- shared_auth/management/commands/__init__.py +0 -0
- shared_auth/management/commands/generate_permissions.py +147 -0
- shared_auth/managers.py +344 -0
- shared_auth/middleware.py +281 -0
- shared_auth/mixins.py +475 -0
- shared_auth/models.py +191 -0
- shared_auth/permissions.py +266 -0
- shared_auth/permissions_cache.py +249 -0
- shared_auth/permissions_helpers.py +251 -0
- shared_auth/router.py +22 -0
- shared_auth/serializers.py +439 -0
- shared_auth/storage_backend.py +6 -0
- shared_auth/urls.py +8 -0
- shared_auth/utils.py +356 -0
- shared_auth/views.py +40 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
shared_auth/__init__.py,sha256=RJOSbto1ZoCaopx79LjH3ckBDNdbdNKYUZ7qnE-qfuo,153
|
|
2
|
+
shared_auth/abstract_models.py,sha256=FnzcJmWrjgrM6GRmjl9GWmYgBdWCnymwl3HuADWvw_A,28280
|
|
3
|
+
shared_auth/app.py,sha256=t99j-DvWLpkN_mAgpXGa1aChE3h6zxa62nhNeTkOHuA,222
|
|
4
|
+
shared_auth/authentication.py,sha256=fwqhGUAslRFXVLBxuxrzB3q8eAWlAyRIuaZ3BL_s-zA,1653
|
|
5
|
+
shared_auth/conf.py,sha256=p-P2TY6dR37kJZGoYuxYAk-LZP8_PUjj9skSIfIr32o,1972
|
|
6
|
+
shared_auth/decorators.py,sha256=-2RHRzvPJzN0c8Q-cB1_hf5tk386jcHZ9-GixKSe0ds,3346
|
|
7
|
+
shared_auth/exceptions.py,sha256=VKamHjBl2yjXG2RsMrLrXru1_Q9IJXmy4xmDcXlpWsU,627
|
|
8
|
+
shared_auth/fields.py,sha256=9xTA2tPiN6o85R9C3N1oi3uxV2NyTXOa1Zrtvl3no1M,1274
|
|
9
|
+
shared_auth/managers.py,sha256=01LVctm151DXj4QJ59KkwjmTCOkiEM1V2wrK6o5_tho,10674
|
|
10
|
+
shared_auth/middleware.py,sha256=6wnwcrLqDHm-pIv37QGSTrwmN-pzvl-SvDIjBI3X940,8073
|
|
11
|
+
shared_auth/mixins.py,sha256=BGIIF0lu1YsBvZBAwrq2-iO17TDZQxlMytqd0A46_Xs,14346
|
|
12
|
+
shared_auth/models.py,sha256=vfJHridujufqBql0ka-1j5aFy-GhM8AHqcGqEDDs54E,5202
|
|
13
|
+
shared_auth/permissions.py,sha256=1X-xkd5RcllrQn1dedjqlBFze7bSHgZSF2yvwhFP3KY,8367
|
|
14
|
+
shared_auth/permissions_cache.py,sha256=a9eeKWHydU8FUz4-f55-Nmr5s3MyXjXcWgyZL_qHpr0,7088
|
|
15
|
+
shared_auth/permissions_helpers.py,sha256=xvdvi3pPmRvFn4DXlBcAaRv_HbRx_jGNnZG7-zv3QDk,7897
|
|
16
|
+
shared_auth/router.py,sha256=JhlDjosViMBmuvYm08vJzKyvrg5P5ECtrU4tKAGsuoU,684
|
|
17
|
+
shared_auth/serializers.py,sha256=V-FqMMZCj71gIXw292230Ax-eXqz4EQ4esPmo-NhQz8,14322
|
|
18
|
+
shared_auth/storage_backend.py,sha256=Eqkjz8aF5UrOpRwYl-J0Td95IObfxnJ8eLQDJVFM3Io,184
|
|
19
|
+
shared_auth/urls.py,sha256=591wWEWJPaHEGkcOZ8yvfgxddRyOcZLgOc0vNtF7XRI,289
|
|
20
|
+
shared_auth/utils.py,sha256=hz5ENhcxLvrgQB6TT6S33PGYcDVrrElxxIjiBqp69Mc,11492
|
|
21
|
+
shared_auth/views.py,sha256=2hyLnYSWUscfq-jVcskt-ukzDt4vg6IXeKjRDRu9RXk,1519
|
|
22
|
+
shared_auth/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
shared_auth/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
shared_auth/management/commands/generate_permissions.py,sha256=FTDerY7R7uWekuc5314sN3lz3CpSNuSJqp0D24-XOXI,4884
|
|
25
|
+
maquinaweb_shared_auth-0.2.60.dist-info/METADATA,sha256=o06EJmDYll9djhVqGPtFLUcWAe10NOZFUkEv4-8O7n4,26354
|
|
26
|
+
maquinaweb_shared_auth-0.2.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
27
|
+
maquinaweb_shared_auth-0.2.60.dist-info/top_level.txt,sha256=msyYRy02ZV7zz7GR1raUI5LXGFIFn2TIkgkeKZqKufE,12
|
|
28
|
+
maquinaweb_shared_auth-0.2.60.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
shared_auth
|