Files
edx-platform/openedx/core/djangoapps/coursegraph/apps.py
Adam Palay 64722bfc8a Moves dump_to_neo4j cache backend to neo4j instead of memcached (SUST-76)
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
2016-11-21 12:36:39 -05:00

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'