blurpritn adn site builde cleanup

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-01 02:22:02 +00:00
parent 3f2385d4d9
commit a7a772a78c
33 changed files with 1591 additions and 1308 deletions

View File

@@ -102,9 +102,8 @@ class ContentAnalyzer:
return ContentClusterMap.objects.filter(content=content).exists()
def _has_taxonomy_mapping(self, content: Content) -> bool:
"""Stage 3: Check if content has taxonomy mapping"""
from igny8_core.business.content.models import ContentTaxonomyMap
return ContentTaxonomyMap.objects.filter(content=content).exists()
"""Stage 3: Check if content has taxonomy mapping (categories/tags)"""
return content.taxonomy_terms.exists()
def _calculate_seo_score(self, content: Content) -> float:
"""Calculate SEO score (0-100)"""