|
| 1 | +# CODEOWNERS para proyecto IACT |
| 2 | +# Referencia: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners |
| 3 | + |
| 4 | +# Por defecto, el equipo de backend revisa todos los cambios |
| 5 | +* @2-Coatl/backend-team |
| 6 | + |
| 7 | +# Configuracion y CI/CD |
| 8 | +/.github/ @2-Coatl/devops-team |
| 9 | +/scripts/ @2-Coatl/devops-team |
| 10 | +/Vagrantfile @2-Coatl/devops-team |
| 11 | +/.devcontainer/ @2-Coatl/devops-team |
| 12 | + |
| 13 | +# Backend - Django |
| 14 | +/api/ @2-Coatl/backend-team |
| 15 | + |
| 16 | +# Modelos y Migraciones - Requiere revision especial |
| 17 | +/api/callcentersite/callcentersite/apps/*/models.py @2-Coatl/backend-team @2-Coatl/dba-team |
| 18 | +/api/callcentersite/callcentersite/apps/*/migrations/ @2-Coatl/backend-team @2-Coatl/dba-team |
| 19 | + |
| 20 | +# Sistema de Permisos - Seguridad critica |
| 21 | +/api/callcentersite/callcentersite/apps/permissions/ @2-Coatl/backend-team @2-Coatl/security-team |
| 22 | +/docs/backend/permisos/ @2-Coatl/backend-team @2-Coatl/security-team |
| 23 | +/docs/adr/ADR-012*.md @2-Coatl/backend-team @2-Coatl/security-team |
| 24 | + |
| 25 | +# Modulos Operativos (Prioridad 3) |
| 26 | +/api/callcentersite/callcentersite/apps/llamadas/ @2-Coatl/backend-team @2-Coatl/operations-team |
| 27 | +/api/callcentersite/callcentersite/apps/tickets/ @2-Coatl/backend-team @2-Coatl/support-team |
| 28 | +/api/callcentersite/callcentersite/apps/clientes/ @2-Coatl/backend-team @2-Coatl/operations-team |
| 29 | +/api/callcentersite/callcentersite/apps/metricas/ @2-Coatl/backend-team @2-Coatl/analytics-team |
| 30 | +/api/callcentersite/callcentersite/apps/reportes/ @2-Coatl/backend-team @2-Coatl/analytics-team |
| 31 | +/api/callcentersite/callcentersite/apps/alertas/ @2-Coatl/backend-team @2-Coatl/operations-team |
| 32 | + |
| 33 | +# Modulos de Gestion (Prioridad 4) |
| 34 | +/api/callcentersite/callcentersite/apps/equipos/ @2-Coatl/backend-team @2-Coatl/management-team |
| 35 | +/api/callcentersite/callcentersite/apps/horarios/ @2-Coatl/backend-team @2-Coatl/management-team |
| 36 | +/api/callcentersite/callcentersite/apps/evaluaciones/ @2-Coatl/backend-team @2-Coatl/quality-team |
| 37 | +/api/callcentersite/callcentersite/apps/audit/ @2-Coatl/backend-team @2-Coatl/security-team |
| 38 | + |
| 39 | +# Modulos Financieros (Prioridad 5) - Revision critica |
| 40 | +/api/callcentersite/callcentersite/apps/pagos/ @2-Coatl/backend-team @2-Coatl/finance-team @2-Coatl/security-team |
| 41 | +/api/callcentersite/callcentersite/apps/facturas/ @2-Coatl/backend-team @2-Coatl/finance-team |
| 42 | +/api/callcentersite/callcentersite/apps/cobranza/ @2-Coatl/backend-team @2-Coatl/finance-team |
| 43 | + |
| 44 | +# Modulos Estrategicos (Prioridad 6) - Solo directores |
| 45 | +/api/callcentersite/callcentersite/apps/presupuestos/ @2-Coatl/backend-team @2-Coatl/executive-team |
| 46 | +/api/callcentersite/callcentersite/apps/politicas/ @2-Coatl/backend-team @2-Coatl/executive-team |
| 47 | + |
| 48 | +# Frontend - React |
| 49 | +/ui/ @2-Coatl/frontend-team |
| 50 | + |
| 51 | +# Componentes compartidos |
| 52 | +/ui/src/components/ @2-Coatl/frontend-team |
| 53 | +/ui/src/state/ @2-Coatl/frontend-team |
| 54 | + |
| 55 | +# Modulos frontend por funcionalidad |
| 56 | +/ui/src/modules/permissions/ @2-Coatl/frontend-team @2-Coatl/security-team |
| 57 | +/ui/src/modules/llamadas/ @2-Coatl/frontend-team @2-Coatl/operations-team |
| 58 | +/ui/src/modules/tickets/ @2-Coatl/frontend-team @2-Coatl/support-team |
| 59 | +/ui/src/modules/clientes/ @2-Coatl/frontend-team @2-Coatl/operations-team |
| 60 | +/ui/src/modules/metricas/ @2-Coatl/frontend-team @2-Coatl/analytics-team |
| 61 | +/ui/src/modules/reportes/ @2-Coatl/frontend-team @2-Coatl/analytics-team |
| 62 | + |
| 63 | +# Mock data para desarrollo |
| 64 | +/ui/src/mocks/ @2-Coatl/frontend-team @2-Coatl/qa-team |
| 65 | + |
| 66 | +# Documentacion |
| 67 | +/docs/ @2-Coatl/documentation-team |
| 68 | + |
| 69 | +# ADRs - Decisiones arquitectonicas |
| 70 | +/docs/adr/ @2-Coatl/backend-team @2-Coatl/frontend-team @2-Coatl/architecture-team |
| 71 | + |
| 72 | +# Documentacion backend |
| 73 | +/docs/backend/ @2-Coatl/backend-team @2-Coatl/documentation-team |
| 74 | + |
| 75 | +# Documentacion frontend |
| 76 | +/docs/frontend/ @2-Coatl/frontend-team @2-Coatl/documentation-team |
| 77 | + |
| 78 | +# Guias operativas |
| 79 | +/docs/guias/ @2-Coatl/devops-team @2-Coatl/documentation-team |
| 80 | + |
| 81 | +# Metricas DORA |
| 82 | +/dora_metrics/ @2-Coatl/devops-team |
| 83 | +/docs/backend/devops/metricas-dora.md @2-Coatl/devops-team |
| 84 | + |
| 85 | +# Tests - QA debe revisar |
| 86 | +/api/**/tests/ @2-Coatl/backend-team @2-Coatl/qa-team |
| 87 | +/ui/**/*.test.* @2-Coatl/frontend-team @2-Coatl/qa-team |
| 88 | +/ui/**/*.spec.* @2-Coatl/frontend-team @2-Coatl/qa-team |
| 89 | + |
| 90 | +# Scripts de validacion - DevOps + Security |
| 91 | +/scripts/check_no_emojis.py @2-Coatl/devops-team |
| 92 | +/scripts/validate_critical_restrictions.sh @2-Coatl/devops-team @2-Coatl/security-team |
| 93 | + |
| 94 | +# Configuracion sensible - Multiples equipos |
| 95 | +/api/callcentersite/callcentersite/settings/ @2-Coatl/backend-team @2-Coatl/devops-team @2-Coatl/security-team |
| 96 | + |
| 97 | +# Base de datos - DBA debe aprobar |
| 98 | +/api/callcentersite/callcentersite/database_router.py @2-Coatl/backend-team @2-Coatl/dba-team |
| 99 | + |
| 100 | +# IVR Legacy - Protegido, solo lectura |
| 101 | +/api/callcentersite/callcentersite/apps/ivr_legacy/ @2-Coatl/backend-team @2-Coatl/dba-team @2-Coatl/legacy-team |
| 102 | + |
| 103 | +# README y archivos raiz |
| 104 | +/README.md @2-Coatl/documentation-team |
| 105 | +/CONTRIBUTING.md @2-Coatl/documentation-team |
| 106 | +/LICENSE @2-Coatl/legal-team |
| 107 | + |
| 108 | +# Este archivo |
| 109 | +/CODEOWNERS @2-Coatl/architecture-team @2-Coatl/devops-team |
0 commit comments