Files
edx-platform/lms/djangoapps/course_goals/apps.py
Michael Terry 2176dd7890 feat: allow unsubcribing from a course goal with just a token
* Add unsubscribe_token uuid field to CourseGoal model
* Add endpoint to unsubcribe from just a token (no login needed)
* Add admin page for the course_goals djangoapp
* Add get_course_overview_or_404 utility method
* Clean up URL handling in course_home_api

AA-907
2021-08-23 12:07:32 -04:00

23 lines
440 B
Python

"""
Course Goals Application Configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class CourseGoalsConfig(AppConfig):
"""
Application Configuration for Course Goals.
"""
name = 'lms.djangoapps.course_goals'
verbose_name = 'Course Goals'
def ready(self):
"""
Connect signal handlers.
"""
from . import handlers # pylint: disable=unused-import