zou 0.19.67__py3-none-any.whl → 0.19.68__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.
- zou/__init__.py +1 -1
- zou/app/blueprints/auth/resources.py +15 -1
- {zou-0.19.67.dist-info → zou-0.19.68.dist-info}/METADATA +3 -3
- {zou-0.19.67.dist-info → zou-0.19.68.dist-info}/RECORD +8 -8
- {zou-0.19.67.dist-info → zou-0.19.68.dist-info}/LICENSE +0 -0
- {zou-0.19.67.dist-info → zou-0.19.68.dist-info}/WHEEL +0 -0
- {zou-0.19.67.dist-info → zou-0.19.68.dist-info}/entry_points.txt +0 -0
- {zou-0.19.67.dist-info → zou-0.19.68.dist-info}/top_level.txt +0 -0
zou/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.19.
|
|
1
|
+
__version__ = "0.19.68"
|
|
@@ -1362,8 +1362,22 @@ class SAMLSSOResource(Resource, ArgsMixin):
|
|
|
1362
1362
|
authn_response.get_identity()
|
|
1363
1363
|
email = authn_response.get_subject().text
|
|
1364
1364
|
person_info = {
|
|
1365
|
-
k:
|
|
1365
|
+
k: (
|
|
1366
|
+
" ".join(v)
|
|
1367
|
+
if isinstance(v, list) and k in ["first_name", "last_name"]
|
|
1368
|
+
else v
|
|
1369
|
+
)
|
|
1366
1370
|
for k, v in authn_response.ava.items()
|
|
1371
|
+
if k
|
|
1372
|
+
in [
|
|
1373
|
+
"first_name",
|
|
1374
|
+
"last_name",
|
|
1375
|
+
"phone",
|
|
1376
|
+
"role",
|
|
1377
|
+
"departments",
|
|
1378
|
+
"studio_id",
|
|
1379
|
+
"active",
|
|
1380
|
+
]
|
|
1367
1381
|
}
|
|
1368
1382
|
try:
|
|
1369
1383
|
user = persons_service.get_person_by_email(email)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: zou
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.68
|
|
4
4
|
Summary: API to store and manage the data of your animation production
|
|
5
5
|
Home-page: https://zou.cg-wire.com
|
|
6
6
|
Author: CG Wire
|
|
@@ -56,7 +56,7 @@ Requires-Dist: numpy==2.1.3; python_version >= "3.10"
|
|
|
56
56
|
Requires-Dist: opencv-python==4.10.0.84
|
|
57
57
|
Requires-Dist: OpenTimelineIO==0.17.0
|
|
58
58
|
Requires-Dist: OpenTimelineIO-Plugins==0.17.0
|
|
59
|
-
Requires-Dist: orjson==3.10.
|
|
59
|
+
Requires-Dist: orjson==3.10.12
|
|
60
60
|
Requires-Dist: pillow==11.0.0
|
|
61
61
|
Requires-Dist: psutil==6.1.0
|
|
62
62
|
Requires-Dist: psycopg[binary]==3.2.3
|
|
@@ -87,7 +87,7 @@ Requires-Dist: pytest==8.3.3; extra == "test"
|
|
|
87
87
|
Provides-Extra: monitoring
|
|
88
88
|
Requires-Dist: prometheus-flask-exporter==0.23.1; extra == "monitoring"
|
|
89
89
|
Requires-Dist: pygelf==0.4.2; extra == "monitoring"
|
|
90
|
-
Requires-Dist: sentry-sdk==2.
|
|
90
|
+
Requires-Dist: sentry-sdk==2.19.0; extra == "monitoring"
|
|
91
91
|
Provides-Extra: lint
|
|
92
92
|
Requires-Dist: autoflake==2.3.1; extra == "lint"
|
|
93
93
|
Requires-Dist: black==24.10.0; extra == "lint"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
zou/__init__.py,sha256=
|
|
1
|
+
zou/__init__.py,sha256=HeoiWHiSUydT3-k-xdKv9o6mWVHnrmaEj0pabjfEUyQ,24
|
|
2
2
|
zou/cli.py,sha256=E7rinikQMEAoSzyV4VH2IrTR4HRDBgqHAcYswEfyFnU,18893
|
|
3
3
|
zou/debug.py,sha256=1fawPbkD4wn0Y9Gk0BiBFSa-CQe5agFi8R9uJYl2Uyk,520
|
|
4
4
|
zou/event_stream.py,sha256=_tue9Ry3aqCniZpKGhWJaY1Eo_fd6zOAfnzPvh_mJzU,8489
|
|
@@ -12,7 +12,7 @@ zou/app/blueprints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
12
12
|
zou/app/blueprints/assets/__init__.py,sha256=T2zhDagHjXF6jRwOQ8vqokZTkBHyY7XtTI0Rlooamjs,2931
|
|
13
13
|
zou/app/blueprints/assets/resources.py,sha256=ff7g8_FzZC6dLvMxcYYffsIOy0CqKqdkZibGm2-qgko,25599
|
|
14
14
|
zou/app/blueprints/auth/__init__.py,sha256=xP874bMWUnLIirOPSEbpe-Q2fBBQrxZGKd0tLZmNJXk,1128
|
|
15
|
-
zou/app/blueprints/auth/resources.py,sha256=
|
|
15
|
+
zou/app/blueprints/auth/resources.py,sha256=sTngRcDn_FAROjlZKMq03YjQpbT82QE3cByX8r8vlK4,45553
|
|
16
16
|
zou/app/blueprints/breakdown/__init__.py,sha256=Dp6GWSGxxWIedpyzTTEKpCRUYEo8oVNVyQhwNvTMmQM,1888
|
|
17
17
|
zou/app/blueprints/breakdown/resources.py,sha256=JY3j17kv7xPKV9S-XoOxNYivpGHlfZkXI5WuGtx3_Yk,13591
|
|
18
18
|
zou/app/blueprints/chats/__init__.py,sha256=YGmwGvddg3MgSYVIh-hmkX8t2em9_LblxBeJzFqFJD4,558
|
|
@@ -413,9 +413,9 @@ zou/remote/normalize_movie.py,sha256=zNfEY3N1UbAHZfddGONTg2Sff3ieLVWd4dfZa1dpnes
|
|
|
413
413
|
zou/remote/playlist.py,sha256=AsDo0bgYhDcd6DfNRV6r6Jj3URWwavE2ZN3VkKRPbLU,3293
|
|
414
414
|
zou/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
415
|
zou/utils/movie.py,sha256=d67fIL9dVBKt-E_qCGXRbNNdbJaJR5sHvZeX3hf8ldE,16559
|
|
416
|
-
zou-0.19.
|
|
417
|
-
zou-0.19.
|
|
418
|
-
zou-0.19.
|
|
419
|
-
zou-0.19.
|
|
420
|
-
zou-0.19.
|
|
421
|
-
zou-0.19.
|
|
416
|
+
zou-0.19.68.dist-info/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
|
417
|
+
zou-0.19.68.dist-info/METADATA,sha256=KcDj-VP0E8-knTHPIuYFUELR0GW-uX58lSxva26OyIU,6710
|
|
418
|
+
zou-0.19.68.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
419
|
+
zou-0.19.68.dist-info/entry_points.txt,sha256=PelQoIx3qhQ_Tmne7wrLY-1m2izuzgpwokoURwSohy4,130
|
|
420
|
+
zou-0.19.68.dist-info/top_level.txt,sha256=4S7G_jk4MzpToeDItHGjPhHx_fRdX52zJZWTD4SL54g,4
|
|
421
|
+
zou-0.19.68.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|