Add periodic exchange task management API
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Successful in 3m16s
CI/CD Pipeline / Run Tests (push) Successful in 3m26s
CI/CD Pipeline / Telegram Notify Success (push) Failing after 1m29s
CI/CD Pipeline / Run Tests (pull_request) Successful in 1m44s
CI/CD Pipeline / Code Quality Checks (pull_request) Successful in 20m19s
CI/CD Pipeline / Telegram Notify Success (pull_request) Failing after 1m34s
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Successful in 3m16s
CI/CD Pipeline / Run Tests (push) Successful in 3m26s
CI/CD Pipeline / Telegram Notify Success (push) Failing after 1m29s
CI/CD Pipeline / Run Tests (pull_request) Successful in 1m44s
CI/CD Pipeline / Code Quality Checks (pull_request) Successful in 20m19s
CI/CD Pipeline / Telegram Notify Success (pull_request) Failing after 1m34s
This commit is contained in:
@@ -4,6 +4,8 @@ from apps.exchange.views import (
|
||||
ExchangeConnectionListCreateView,
|
||||
ExchangeConnectionTestView,
|
||||
ExchangeCopyDataView,
|
||||
ExchangePeriodicTaskDetailView,
|
||||
ExchangePeriodicTaskListCreateView,
|
||||
)
|
||||
from django.urls import path
|
||||
|
||||
@@ -19,6 +21,16 @@ exchange_urlpatterns = [
|
||||
name="connections-test",
|
||||
),
|
||||
path("copy/", ExchangeCopyDataView.as_view(), name="copy"),
|
||||
path(
|
||||
"periodic-tasks/",
|
||||
ExchangePeriodicTaskListCreateView.as_view(),
|
||||
name="periodic-tasks",
|
||||
),
|
||||
path(
|
||||
"periodic-tasks/<int:task_id>/",
|
||||
ExchangePeriodicTaskDetailView.as_view(),
|
||||
name="periodic-task-detail",
|
||||
),
|
||||
]
|
||||
|
||||
urlpatterns = []
|
||||
|
||||
Reference in New Issue
Block a user