- Создано приложение integrations с базовой архитектурой - BaseIntegration (абстрактная модель) для всех интеграций - BaseIntegrationService (абстрактный сервисный класс) - IntegrationConfig модель для тумблеров в system_settings - Добавлена вкладка "Интеграции" в системные настройки - Заготовка UI с тумблерами для включения интеграций Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
416 B
Python
13 lines
416 B
Python
from django.urls import path, include
|
|
|
|
from .views import SystemSettingsView
|
|
|
|
app_name = "system_settings"
|
|
|
|
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')),
|
|
]
|