mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
12 lines
397 B
Python
12 lines
397 B
Python
from django.urls import path
|
|
from .views import StreamDashboardView, channels_dashboard_view
|
|
|
|
app_name = 'channels_dashboard'
|
|
|
|
urlpatterns = [
|
|
# Example “dashboard” routes for streams
|
|
path('streams/', StreamDashboardView.as_view(), name='stream_dashboard'),
|
|
|
|
# Example “dashboard” route for channels
|
|
path('channels/', channels_dashboard_view, name='channels_dashboard'),
|
|
]
|