port to new django, AI automated

This commit is contained in:
2026-03-30 22:35:36 +02:00
parent e2d166e437
commit 372da3caa9
215 changed files with 9283 additions and 2981 deletions

14
eventplanner_gcal/apps.py Normal file
View File

@@ -0,0 +1,14 @@
from django.apps import AppConfig
class EventplannerGcalConfig(AppConfig):
"""App configuration for eventplanner_gcal."""
name = "eventplanner_gcal"
verbose_name = "Event Planner Google Calendar Integration"
default_auto_field = "django.db.models.BigAutoField"
def ready(self):
"""Import signal handlers when the app is ready."""
# Import signals to register them
from . import signals # noqa: F401