- Introduced a new scheduled task for executing automation rules every 5 minutes in the Celery beat schedule. - Updated URL routing to include a new endpoint for automation-related functionalities. - Refactored imports in various modules to align with the new business layer structure, ensuring backward compatibility for billing models, exceptions, and services.
5 lines
203 B
Python
5 lines
203 B
Python
# Backward compatibility aliases - models moved to business/planning/
|
|
from igny8_core.business.planning.models import Keywords, Clusters, ContentIdeas
|
|
|
|
__all__ = ['Keywords', 'Clusters', 'ContentIdeas']
|