Files
alorig f7115190dc Add Linker and Optimizer modules with API integration and frontend components
- Added Linker and Optimizer apps to `INSTALLED_APPS` in `settings.py`.
- Configured API endpoints for Linker and Optimizer in `urls.py`.
- Implemented `OptimizeContentFunction` for content optimization in the AI module.
- Created prompts for content optimization and site structure generation.
- Updated `OptimizerService` to utilize the new AI function for content optimization.
- Developed frontend components including dashboards and content lists for Linker and Optimizer.
- Integrated new routes and sidebar navigation for Linker and Optimizer in the frontend.
- Enhanced content management with source and sync status filters in the Writer module.
- Comprehensive test coverage added for new features and components.
2025-11-18 00:41:00 +05:00

13 lines
295 B
Python

from django.urls import include, path
from rest_framework.routers import DefaultRouter
from igny8_core.modules.optimizer.views import OptimizerViewSet
router = DefaultRouter()
router.register(r'', OptimizerViewSet, basename='optimizer')
urlpatterns = [
path('', include(router.urls)),
]