Added Scanner identification and MQTT handling

This commit is contained in:
2022-04-13 15:43:20 +02:00
parent 4da41fe1cd
commit 4b7234fa68
18 changed files with 595 additions and 76 deletions

View File

@@ -4,6 +4,6 @@ from . import views
app_name = 'booker'
urlpatterns = [
path('', views.index, name='index'),
path('', views.IndexView.as_view(), name='index'),
path('<str:scanner_id>/', views.scanner, name='scanner')
]