-use Amazon SES to send calendar sync email when user initially subscribes to the calendar sync feature
19 lines
425 B
Python
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
|