diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-07-18 17:10:41 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-24 18:32:22 +0200 |
| commit | 337dfccf78b25e7c9805b4e90a4d01b99cf2bb17 (patch) | |
| tree | 98a61f30108c48ab61f503ba8016b95302318c24 /ishtar_common/urls.py | |
| parent | 5245a76579a99de36f444ce5356cc5e46d022692 (diff) | |
| download | Ishtar-337dfccf78b25e7c9805b4e90a4d01b99cf2bb17.tar.bz2 Ishtar-337dfccf78b25e7c9805b4e90a4d01b99cf2bb17.zip | |
✨ GIS API: get types API
Diffstat (limited to 'ishtar_common/urls.py')
| -rw-r--r-- | ishtar_common/urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 08474a869..f062700e4 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -381,6 +381,11 @@ urlpatterns = [ views_api.GISImportAPI.as_view(), name="api-gis-sources", ), + path( + "api/gis/type/<app>/<model>/", + views_api.GISTypeAPI.as_view(), + name="api-gis-type", + ), re_path(r"^profile(?:/(?P<pk>[0-9]+))?/$", views.ProfileEdit.as_view(), name="profile"), re_path( r"^save-search/(?P<app_label>[a-z-]+)/(?P<model>[a-z-]+)/$", |
