mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-01-20 15:22:58 -05:00
13 lines
327 B
Python
13 lines
327 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class LtiConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'lti'
|
|
verbose_name = 'LTI 1.3 Integration'
|
|
|
|
def ready(self):
|
|
"""Import signal handlers when app is ready"""
|
|
# Import any signals here if needed in the future
|
|
pass
|