- Registered the new AutomationConfig in the INSTALLED_APPS of settings.py. - Set the app_label for AutomationRule and ScheduledTask models to 'automation' for better organization and clarity in the database schema.
6 lines
198 B
Python
6 lines
198 B
Python
# Backward compatibility alias - models moved to business/automation/
|
|
from igny8_core.business.automation.models import AutomationRule, ScheduledTask
|
|
|
|
__all__ = ['AutomationRule', 'ScheduledTask']
|
|
|