Also * Instead of caching when a course is last published, we get this information from the CourseStructure table * This commit introduces a mock py2neo Graph to be used for testing
15 lines
254 B
Python
15 lines
254 B
Python
"""
|
|
Coursegraph Application Configuration
|
|
|
|
Signal handlers are connected here.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CoursegraphConfig(AppConfig):
|
|
"""
|
|
AppConfig for courseware app
|
|
"""
|
|
name = 'openedx.core.djangoapps.coursegraph'
|