diff --git a/backend/api.py b/backend/api.py index 3a3bbde3..994560ca 100644 --- a/backend/api.py +++ b/backend/api.py @@ -28,6 +28,7 @@ from flags import api as feature_flags_api from services import transcription as transcription_api import sys from services import email_api +from feedback import api as feedback_api from triggers import api as triggers_api from triggers.endpoints.workflows import router as workflows_router @@ -187,6 +188,8 @@ api_router.include_router(workflows_router, prefix="/workflows") from pipedream import api as pipedream_api api_router.include_router(pipedream_api.router) +api_router.include_router(feedback_api.router) + @api_router.get("/health") async def health_check(): logger.info("Health check endpoint called")