summaryrefslogtreecommitdiff
path: root/ishtar_common/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r--ishtar_common/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py
index b6ac71a9e..b7e5f46d1 100644
--- a/ishtar_common/urls.py
+++ b/ishtar_common/urls.py
@@ -596,6 +596,13 @@ urlpatterns += [
name="edit-geo",
),
url(
+ r"geo/delete/(?P<pk>\d+)/$",
+ check_rights(["change_geovectordata", "change_own_geovectordata"])(
+ views.GeoDeleteView.as_view()
+ ),
+ name="delete-geo",
+ ),
+ url(
r"^qa-not-available(?:/(?P<context>[0-9a-z-]+))?/$",
views.QANotAvailable.as_view(),
name="qa-not-available",