This commit is contained in:
Markos Gogoulos
2026-01-16 13:44:04 +02:00
parent 9af4686bd4
commit 15c8dec041
4 changed files with 66 additions and 7 deletions

View File

@@ -21,4 +21,6 @@ urlpatterns = [
path('embed/<str:friendly_token>/', views.EmbedMediaLTIView.as_view(), name='embed_media'),
# Manual sync
path('sync/<int:platform_id>/<str:context_id>/', views.ManualSyncView.as_view(), name='manual_sync'),
# TinyMCE integration (reuses select-media with mode=tinymce parameter)
path('tinymce-embed/<str:friendly_token>/', views.TinyMCEGetEmbedView.as_view(), name='tinymce_embed'),
]