From 17c046c51e6385f579a92eb24028bef11cb5dcfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D9=8A?= Date: Mon, 20 Apr 2026 08:19:55 +0530 Subject: [PATCH] Add broll router to podcast API registrations --- backend/api/podcast/router.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/api/podcast/router.py b/backend/api/podcast/router.py index c3b66234..5e79f9f3 100644 --- a/backend/api/podcast/router.py +++ b/backend/api/podcast/router.py @@ -12,7 +12,7 @@ from api.story_writer.utils.auth import require_authenticated_user from api.story_writer.task_manager import task_manager # Import all handler routers -from .handlers import projects, analysis, research, script, audio, images, video, avatar, dubbing +from .handlers import projects, analysis, research, script, audio, images, video, avatar, dubbing, broll # Create main router router = APIRouter(prefix="/api/podcast", tags=["Podcast Maker"]) @@ -27,6 +27,7 @@ router.include_router(images.router) router.include_router(video.router) router.include_router(avatar.router) router.include_router(dubbing.router) +router.include_router(broll.router) @router.get("/task/{task_id}/status")