19 lines
459 B
Python
19 lines
459 B
Python
"""
|
|
Configuration for the lti_provider Django application.
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class LtiProviderConfig(AppConfig):
|
|
"""
|
|
Configuration class for the lti_provider Django application.
|
|
"""
|
|
name = 'lms.djangoapps.lti_provider'
|
|
verbose_name = "LTI Provider"
|
|
|
|
def ready(self):
|
|
# Import the tasks module to ensure that signal handlers are registered.
|
|
from . import signals # pylint: disable=unused-import
|