getStation(); if (!$station->getBackendTypeEnum()->isEnabled() || !$station->getEnableHls()) { throw new StationUnsupportedException(); } $router = $request->getRouter(); return $request->getView()->renderVuePage( response: $response, component: 'Vue_StationsHlsStreams', id: 'station-hls-streams', title: __('HLS Streams'), props: [ 'listUrl' => (string)$router->fromHere('api:stations:hls_streams'), 'restartStatusUrl' => (string)$router->fromHere('api:stations:restart-status'), ], ); } }