Skip to content
Snippets Groups Projects
Commit a97a66e2 authored by Benjamin Ledel's avatar Benjamin Ledel
Browse files

Merge branch 'main' of git.rwth-aachen.de:polaris/entwicklung/rights-engine

parents b4f2f0e6 8dd56a58
No related branches found
No related tags found
No related merge requests found
Pipeline #1633262 passed
Pipeline: FIRST_START

#1633283

    ......@@ -41,7 +41,7 @@ def migrate_schema_to_objects(apps, schema_editor):
    verb_id = verb_data["id"],
    label = verb_data["label"],
    description = verb_data["description"],
    default_consent = verb_data["defaultConsent"],
    default_consent = verb_data["defaultConsent"] if "defaultConsent" in verb_data.keys() else False,
    active = schema.superseded_by is None,
    essential = False,
    allow_anonymized_collection = verb_data["allowAnonymizedCollection"]
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment