X-Git-Url: https://handorf.org/code/?a=blobdiff_plain;f=logviewer%2Flogviewer%2Furls.py;h=aee7816eaf197a079641018a4912e96d48af1f76;hb=cb1481f96d5fbcf3c764be4b2eeebdda5c69e024;hp=13439354a04f11d58b3c8201b00bd6dfb56c9b34;hpb=93569ebd4cde1fb170314ec181c4e4351ac2de83;p=kismet-logviewer.git diff --git a/logviewer/logviewer/urls.py b/logviewer/logviewer/urls.py index 1343935..aee7816 100644 --- a/logviewer/logviewer/urls.py +++ b/logviewer/logviewer/urls.py @@ -29,19 +29,36 @@ urlpatterns = [ path('css/', include('kiscontent.urls')), path('images/', include('kiscontent.urls')), path('fonts/', include('kiscontent.urls')), + path('favicon.ico', include('kiscontent.urls')), path('dynamic.js', include('dbview.urls')), path('gps/location.json', include('dbview.urls')), path('alerts/alerts_view.json', include('dbview.urls')), path('phy/phy80211/ssids/views/ssids.json', include('dbview.urls')), path('css/images/', include('kiscontent.urls')), + path('adsb_map_panel.html', include('adsbmap.urls')), + path('russ_map_panel.html', include('russmap.urls')), path('system/status.json', include('dbview.urls')), path('alerts/wrapped/last-time/0/alerts.json', include('dbview.urls')), path('messagebus/last-time/0/messages.json', include('dbview.urls')), path('channels/channels.json', include('dbview.urls')), path('devices/views/all/devices.json', include('dbview.urls')), - path('eventbus/events.ws', include('dbview.urls')), + path('devices/views/phydot11_accesspoints/devices.json', include('dbview.urls')), + path('devices/views/phy-RADIATION/devices.json', include('dbview.urls')), + path('devices/views/phy-802.15.4/devices.json', include('dbview.urls')), + path('devices/views/phy-RTLADSB/devices.json', include('dbview.urls')), + path('devices/views/phy-RTLAMR/devices.json', include('dbview.urls')), + path('devices/views/phy-BTLE/devices.json', include('dbview.urls')), + path('devices/views/phy-NrfMousejack/devices.json', include('dbview.urls')), + path('devices/views/phy-UAV/devices.json', include('dbview.urls')), + path('devices/views/phy-Bluetooth/devices.json', include('dbview.urls')), + path('devices/views/phy-Z-Wave/devices.json', include('dbview.urls')), + path('devices/views/phy-RTL433/devices.json', include('dbview.urls')), + path('devices/views/phy-IEEE802.11/devices.json', include('dbview.urls')), + path('phy/ADSB/map_data.json', include('dbview.urls')), + path('phy/RUSS/map_data.json', include('dbview.urls')), path('devices/by-key//device.json', include('devices.urls')), path('devices/multikey/as-object/devices.json', include('dbview.urls')), path('datasource/by-uuid//source.json', include('devices.urls')), path('phy/phy80211/ssids/by-hash//ssid.json', include('devices.urls')), + path('eventbus/', include('eventbus.urls')), ]