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

This commit is contained in:
2026-03-19 17:03:47 +01:00
parent 941c268d32
commit 3de66cc25c
8 changed files with 867 additions and 24 deletions

View File

@@ -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 = []