feat: websockets
CI / test (push) Successful in 1m56s
CI / build (push) Successful in 48s

This commit is contained in:
2026-07-31 14:27:50 +02:00
parent 125c9dd186
commit 393b39cacd
13 changed files with 626 additions and 2 deletions
+2
View File
@@ -1,11 +1,13 @@
from django.urls import include, path
from backoffice.views.dashboard import DashboardView
from backoffice.views.ws_demo import WebSocketDemoView
app_name = 'backoffice'
urlpatterns = [
path('', DashboardView.as_view(), name='dashboard'),
path('ws-demo/', WebSocketDemoView.as_view(), name='ws_demo'),
path('products/', include('backoffice.urls.products')),
path('orders/', include('backoffice.urls.orders')),
path('payments/', include('backoffice.urls.payments')),