From 6684870463e94235607570ab5e3078aabac4ef0f Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Thu, 21 Aug 2025 01:10:30 +0000 Subject: [PATCH] Update web/illustrations/urls.py --- web/illustrations/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/illustrations/urls.py b/web/illustrations/urls.py index c4e2ffb..f6d2697 100644 --- a/web/illustrations/urls.py +++ b/web/illustrations/urls.py @@ -5,6 +5,7 @@ from django.contrib.auth import views as auth_views from core import views as core_views from core import views_user_features as feat_views # NEW +from core import views_tts urlpatterns = [ # Core app @@ -25,6 +26,7 @@ urlpatterns = [ path("tools/normalize-scripture/", core_views.normalize_scripture, name="normalize_scripture"), path("tools/normalize-source/", core_views.normalize_source, name="normalize_source"), path("tools/normalize-subjects/", core_views.normalize_subjects, name="normalize_subjects"), + path("api/tts//", views_tts.api_tts_for_entry, name="api_tts_for_entry"), # Export/Import/etc (keep what you use) path("export/", core_views.export_csv, name="export_csv"),