9 lines
354 B
Python
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'),
|
|
]
|