"""URL конфигурация приложения exchange.""" from apps.exchange.views import ( ExchangeConnectionListCreateView, ExchangeConnectionTestView, ExchangeCopyDataView, ExchangePeriodicTaskDetailView, ExchangePeriodicTaskListCreateView, ) from django.urls import path app_name = "exchange" 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"), path( "periodic-tasks/", ExchangePeriodicTaskListCreateView.as_view(), name="periodic-tasks", ), path( "periodic-tasks//", ExchangePeriodicTaskDetailView.as_view(), name="periodic-task-detail", ), ] urlpatterns = []