mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-19 17:47:40 +00:00
Add end-to-end catch-up support for XC clients and native apps: provider proxy with failover and per-viewer session pooling, REST session minting for tokenless playback URLs, catch-up admin stats, combined connection stats, and Stats UI with dedicated cards plus websocket updates. Includes Redis namespace consolidation under timeshift:* (dropping legacy timeshift_ id prefixes), dedicated catch-up stop by session_id, and cleaner channel/client metadata split for stats keys. Closes #133
12 lines
415 B
Python
12 lines
415 B
Python
from django.urls import path
|
|
|
|
from . import stats_views, views
|
|
|
|
app_name = "catchup"
|
|
|
|
urlpatterns = [
|
|
path("stats/", stats_views.timeshift_stats, name="catchup_stats"),
|
|
path("programs/", stats_views.catchup_programmes, name="catchup_programmes"),
|
|
path("stop_client/", stats_views.stop_timeshift_session, name="catchup_stop_client"),
|
|
path("<uuid:channel_id>", views.catchup_proxy, name="catchup"),
|
|
]
|