diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-13 17:36:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-13 17:36:56 +0200 |
commit | 9b7239d30ec8625de9ef42a861f37775a32dca78 (patch) | |
tree | 5ca0c0012ea734fdcaa1ef7f92542dc55a358435 /archaeological_operations/urls.py | |
parent | fe0d3dab9d0123f5e92b61daf7b270a20bd25333 (diff) | |
download | Ishtar-9b7239d30ec8625de9ef42a861f37775a32dca78.tar.bz2 Ishtar-9b7239d30ec8625de9ef42a861f37775a32dca78.zip |
🐛 archaeological sites: remove "add operation" shortcuts (refs #6329)
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r-- | archaeological_operations/urls.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py index 7f5080c39..dd0c28b75 100644 --- a/archaeological_operations/urls.py +++ b/archaeological_operations/urls.py @@ -400,20 +400,6 @@ urlpatterns = [ kwargs={"confirm": True}, ), url( - r"^site-add-operation/(?P<pks>[0-9-]+)?/$", - check_rights(["change_operation"])( - views.site_add_operation - ), - name="site-add-operation", - ), - url( - r"^site-add-top-operation/(?P<pks>\d+)?/$", - check_rights(["change_operation"])( - views.site_add_top_operation - ), - name="site-add-top-operation", - ), - url( r"generate-stats-operation/(?P<pk>.+)/", views.GenerateStatsOperation.as_view(), name="generate-stats-operation", |