elody 0.0.211__py3-none-any.whl → 0.0.212__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.
- elody/object_configurations/saved_search_configuration.py +25 -0
- {elody-0.0.211.dist-info → elody-0.0.212.dist-info}/METADATA +1 -1
- {elody-0.0.211.dist-info → elody-0.0.212.dist-info}/RECORD +6 -5
- {elody-0.0.211.dist-info → elody-0.0.212.dist-info}/WHEEL +0 -0
- {elody-0.0.211.dist-info → elody-0.0.212.dist-info}/licenses/LICENSE +0 -0
- {elody-0.0.211.dist-info → elody-0.0.212.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from elody.object_configurations.elody_configuration import ElodyConfiguration
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class SavedSearchConfiguration(ElodyConfiguration):
|
|
5
|
+
SCHEMA_TYPE = "elody"
|
|
6
|
+
SCHEMA_VERSION = 1
|
|
7
|
+
|
|
8
|
+
def crud(self):
|
|
9
|
+
crud = {"collection": "saved_searches", "collection_history": ""}
|
|
10
|
+
return {**super().crud(), **crud}
|
|
11
|
+
|
|
12
|
+
def document_info(self):
|
|
13
|
+
return super().document_info()
|
|
14
|
+
|
|
15
|
+
def logging(self, flat_document, **kwargs):
|
|
16
|
+
return super().logging(flat_document, **kwargs)
|
|
17
|
+
|
|
18
|
+
def migration(self):
|
|
19
|
+
return super().migration()
|
|
20
|
+
|
|
21
|
+
def serialization(self, from_format, to_format):
|
|
22
|
+
return super().serialization(from_format, to_format)
|
|
23
|
+
|
|
24
|
+
def validation(self):
|
|
25
|
+
return super().validation()
|
|
@@ -15,6 +15,7 @@ elody/object_configurations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
15
15
|
elody/object_configurations/base_object_configuration.py,sha256=8wyUq_zqRkGb4Mp198pyxOaGdz2WMZzVOO65s1SDCRw,7393
|
|
16
16
|
elody/object_configurations/elody_configuration.py,sha256=U-obcuRLL7L5MjB0gk5fUSH2cC_mZIe5uV9a61gwwqs,8486
|
|
17
17
|
elody/object_configurations/job_configuration.py,sha256=HMDxaRUyfqhIy0q3yQDDMH9uW5iCd7VCmqknQofXNt0,2039
|
|
18
|
+
elody/object_configurations/saved_search_configuration.py,sha256=ddOry4EqYOeEKRF7q2M_fHoqZv8DXpQjFq8VaZ7jhVI,732
|
|
18
19
|
elody/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
20
|
elody/policies/helpers.py,sha256=LTV_Hmg8AN64e6t4glpKhZMsRNYCLN8FC-KQ0-7EmR8,2035
|
|
20
21
|
elody/policies/permission_handler.py,sha256=ovQ1id67GtiEZYl3_2f_QPDn7XkCMGae6xgnpMWNHs8,10233
|
|
@@ -34,13 +35,13 @@ elody/policies/authorization/mediafile_derivatives_policy.py,sha256=OwNpbS8i7-Lz
|
|
|
34
35
|
elody/policies/authorization/mediafile_download_policy.py,sha256=XMsKavBucmTh4W1kWOzpFWxJ_ZXgHVK1RS7JB4HjtQo,1979
|
|
35
36
|
elody/policies/authorization/multi_tenant_policy.py,sha256=SA9H7SBjzuh8mY3gYN7pDG8TV7hdI3GEUtNeiZeNL3M,3164
|
|
36
37
|
elody/policies/authorization/tenant_request_policy.py,sha256=dEgblwRAqwWVcE-O7Jn8hVL3OnwDlQhDEOcPlcElBrk,1185
|
|
37
|
-
elody-0.0.
|
|
38
|
+
elody-0.0.212.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
|
38
39
|
tests/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
40
|
tests/data.py,sha256=Q3oxduf-E3m-Z5G_p3fcs8jVy6g10I7zXKL1m94UVMI,2906
|
|
40
41
|
tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
42
|
tests/unit/test_csv.py,sha256=NQaOhehfQ4GuXku0Y1SA8DYjJeqqidbF50zEHAi8RZA,15923
|
|
42
43
|
tests/unit/test_utils.py,sha256=g63szcEZyHhCOtrW4BnNbcgVca3oYPIOLjBdIzNwwN0,8784
|
|
43
|
-
elody-0.0.
|
|
44
|
-
elody-0.0.
|
|
45
|
-
elody-0.0.
|
|
46
|
-
elody-0.0.
|
|
44
|
+
elody-0.0.212.dist-info/METADATA,sha256=---t7DA0x-tta98SK-SypYjl4VDKSAP3yConu2A0zc8,23358
|
|
45
|
+
elody-0.0.212.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
46
|
+
elody-0.0.212.dist-info/top_level.txt,sha256=E0mImupLj0KmtUUCXRYEoLDRaSkuiGaOIIseAa0oQ-M,21
|
|
47
|
+
elody-0.0.212.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|