Set filter_logic from YAML file

This commit is contained in:
Tobias Genannt 2021-10-21 17:06:24 +02:00
parent a206ad6811
commit 2b4c058af8
1 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,9 @@ for cf_name, cf_details in customfields.items():
if cf_details.get("type", False):
custom_field.type = cf_details["type"]
if cf_details.get("filter_logic", False):
custom_field.filter_logic = cf_details["filter_logic"]
if cf_details.get("weight", -1) >= 0:
custom_field.weight = cf_details["weight"]