Fix admin API gaps for users, exchange checks, and parser logs
This commit is contained in:
@@ -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"),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user