feat(integrations): добавлен фундамент для интеграций с внешними сервисами

- Создано приложение integrations с базовой архитектурой
- BaseIntegration (абстрактная модель) для всех интеграций
- BaseIntegrationService (абстрактный сервисный класс)
- IntegrationConfig модель для тумблеров в system_settings
- Добавлена вкладка "Интеграции" в системные настройки
- Заготовка UI с тумблерами для включения интеграций

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-11 23:02:42 +03:00
parent b562eabcaf
commit 4450e34497
16 changed files with 346 additions and 1 deletions

View File

@@ -8,4 +8,5 @@ urlpatterns = [
path("", SystemSettingsView.as_view(), name="settings"),
path("roles/", include('user_roles.urls', namespace='user_roles')),
path("discounts/", include('discounts.urls', namespace='discounts')),
path("integrations/", include('integrations.urls', namespace='integrations')),
]