Major updates including: - Customizable dashboard with drag-and-drop widget grid layout - Plan-based feature locking for plugins and tasks - Comprehensive help documentation updates across all pages - Plugin seeding in deployment process for all tenants - Permission synchronization system for subscription plans - QuotaOverageModal component and enhanced UX flows 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
378 B
Python
17 lines
378 B
Python
"""
|
|
Smooth Schedule Core App Configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'core'
|
|
verbose_name = 'Smooth Schedule Core'
|
|
|
|
def ready(self):
|
|
"""
|
|
Import signals and perform app initialization.
|
|
"""
|
|
from . import signals # noqa: F401
|