Files
2026-08-05 23:59:15 +08:00

9 lines
354 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('records/', views.BrowsingHistoryListCreateView.as_view(), name='history_list_create'),
path('records/<int:pk>/', views.BrowsingHistoryDeleteView.as_view(), name='history_delete'),
path('records/clear/', views.BrowsingHistoryClearView.as_view(), name='history_clear'),
]