mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 01:26:47 +01:00
bulk edit view
This commit is contained in:
parent
66d6d29c23
commit
4b0027797a
3 changed files with 35 additions and 5 deletions
|
|
@ -17,7 +17,8 @@ from documents.views import (
|
|||
IndexView,
|
||||
SearchAutoCompleteView,
|
||||
StatisticsView,
|
||||
PostDocumentView
|
||||
PostDocumentView,
|
||||
BulkEditView
|
||||
)
|
||||
from paperless.views import FaviconView
|
||||
|
||||
|
|
@ -50,6 +51,10 @@ urlpatterns = [
|
|||
re_path(r"^documents/post_document/", PostDocumentView.as_view(),
|
||||
name="post_document"),
|
||||
|
||||
|
||||
re_path(r"^documents/bulk_edit/", BulkEditView.as_view(),
|
||||
name="bulk_edit"),
|
||||
|
||||
path('token/', views.obtain_auth_token)
|
||||
|
||||
] + api_router.urls)),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue