* 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
23 lines
440 B
Python
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
|