This commit is contained in:
Markos Gogoulos
2025-12-24 17:28:12 +02:00
parent ed5cfa1a84
commit 295578dae2
22 changed files with 2345 additions and 1 deletions

12
lti/apps.py Normal file
View File

@@ -0,0 +1,12 @@
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