21 lines
437 B
Python
21 lines
437 B
Python
"""
|
|
Discussion Application Configuration
|
|
|
|
Signal handlers are connected here.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class DiscussionConfig(AppConfig):
|
|
"""
|
|
Application Configuration for Grades.
|
|
"""
|
|
name = u'lms.djangoapps.discussion'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect handlers to send notifications about discussions.
|
|
"""
|
|
from .signals import handlers # pylint: disable=unused-variable
|