From 5e07bb396cb88ab537a387915d76eaaa61cbeebf Mon Sep 17 00:00:00 2001 From: Galen Date: Fri, 15 Nov 2024 11:14:00 -0800 Subject: [PATCH] create a url for search_layer, re #10502 --- arches/urls.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arches/urls.py b/arches/urls.py index e2772c1999c..29fb817f887 100644 --- a/arches/urls.py +++ b/arches/urls.py @@ -56,6 +56,7 @@ ResourceActivityStreamPageView, ResourceActivityStreamCollectionView, ) +from arches.app.views.search_layer import SearchLayer from arches.app.views.plugin import PluginView from arches.app.views.workflow_history import WorkflowHistoryView from arches.app.views.concept import RDMView @@ -675,6 +676,11 @@ api.MVT.as_view(), name="mvt", ), + path( + "search-layer///.pbf", + SearchLayer.as_view(), + name="search_layer", + ), re_path(r"^images$", api.Images.as_view(), name="images"), re_path( r"^ontology_properties$",