Merge pull request #633 from tobiasge/fix-540

Set filter_logic from YAML file
This commit is contained in:
Tobias Genannt 2021-10-25 14:08:00 +02:00 committed by GitHub
commit 9a0e1115ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"]