Feature: live preview of storage path (#7870)

This commit is contained in:
shamoon
2024-10-09 16:35:36 -07:00
committed by GitHub
parent 8dd355f6bf
commit 024b60638a
15 changed files with 426 additions and 54 deletions

View File

@@ -32,6 +32,7 @@ from documents.views import SelectionDataView
from documents.views import SharedLinkView
from documents.views import ShareLinkViewSet
from documents.views import StatisticsView
from documents.views import StoragePathTestView
from documents.views import StoragePathViewSet
from documents.views import SystemStatusView
from documents.views import TagViewSet
@@ -165,6 +166,11 @@ urlpatterns = [
TrashView.as_view(),
name="trash",
),
re_path(
"^storage_paths/test/",
StoragePathTestView.as_view(),
name="storage_paths_test",
),
*api_router.urls,
],
),