Fix admin API gaps for users, exchange checks, and parser logs

This commit is contained in:
2026-03-19 16:48:38 +01:00
parent 25176f31b4
commit 941c268d32
22 changed files with 817 additions and 28 deletions

View File

@@ -1,6 +1,10 @@
"""URL конфигурация приложения exchange."""
from apps.exchange.views import ExchangeConnectionListCreateView, ExchangeCopyDataView
from apps.exchange.views import (
ExchangeConnectionListCreateView,
ExchangeConnectionTestView,
ExchangeCopyDataView,
)
from django.urls import path
app_name = "exchange"
@@ -9,6 +13,11 @@ exchange_urlpatterns = [
path(
"connections/", ExchangeConnectionListCreateView.as_view(), name="connections"
),
path(
"connections/test/",
ExchangeConnectionTestView.as_view(),
name="connections-test",
),
path("copy/", ExchangeCopyDataView.as_view(), name="copy"),
]