learnhouse/apps/api/migrations/orgconfigs/v1_1.py
2024-08-20 19:23:03 +02:00

14 lines
363 B
Python

def migrate_to_v1_1(v1_config):
# Start by copying the existing configuration
v1_1_config = v1_config.copy()
# Update the config version
v1_1_config["config_version"] = "1.1"
# Add the new 'cloud' object at the end
v1_1_config['cloud'] = {
"plan": "free",
"custom_domain": False
}
return v1_1_config