mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 15:52:11 +01:00
15 lines
324 B
Python
15 lines
324 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "data_integration"
|
|
|
|
urlpatterns = [
|
|
path("manual-refresh/", views.manual_data_refresh, name="manual_data_refresh"),
|
|
path(
|
|
"refresh/<int:source_id>/",
|
|
views.refresh_specific_datasource,
|
|
name="refresh_specific_datasource",
|
|
),
|
|
]
|