Files
edx-platform/openedx/features/calendar_sync/apps.py
Nicholas D'Alfonso 858c3750b0 AA-160 calendar sync initial email
-use Amazon SES to send calendar sync email when user initially
 subscribes to the calendar sync feature
2020-07-14 10:58:01 -04:00

19 lines
425 B
Python

"""
Define the calendar_sync Django App.
"""
# -*- coding: utf-8 -*-
from django.apps import AppConfig
class UserCalendarSyncConfig(AppConfig):
name = 'openedx.features.calendar_sync'
def ready(self):
super(UserCalendarSyncConfig, self).ready()
# noinspection PyUnresolvedReferences
import openedx.features.calendar_sync.signals # pylint: disable=import-outside-toplevel,unused-import