Expose GET/POST /api/v1/export/ for server dumps and add import UI for relations (CSV/JSON) plus remote backup controls. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
223 B
Python
9 lines
223 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('import/', views.ImportContactsView.as_view(), name='import-contacts'),
|
|
path('export/', views.ExportDumpView.as_view(), name='export-dump'),
|
|
]
|