Use appropriate names for data/geodata requests
This commit is contained in:
parent
eef66507e9
commit
a432f2e5c2
1 changed files with 2 additions and 2 deletions
|
@ -60,8 +60,8 @@ urlpatterns = [
|
||||||
path('', HomePageView.as_view(), name='home'),
|
path('', HomePageView.as_view(), name='home'),
|
||||||
path('offline', OfflinePageView.as_view(), name='offline'),
|
path('offline', OfflinePageView.as_view(), name='offline'),
|
||||||
path('demo/', admin.site.urls),
|
path('demo/', admin.site.urls),
|
||||||
path('geodata/<path:path>/', send_from_file, name='send_file'),
|
path('geodata/<path:path>/', send_from_file, name='send_geodata_file'),
|
||||||
path('data/<path:path>', send_from_file, name='send_file'),
|
path('data/<path:path>', send_from_file, name='send_data_file'),
|
||||||
|
|
||||||
# TODO Implement the following
|
# TODO Implement the following
|
||||||
# path('reindex/', admin.site.urls),
|
# path('reindex/', admin.site.urls),
|
||||||
|
|
Loading…
Reference in a new issue