Add networking options for configuring listening ports (#21779)

This commit is contained in:
Eric Work
2026-01-28 07:27:46 -07:00
committed by GitHub
parent 5fdb56a106
commit a2ae2903cf
18 changed files with 183 additions and 131 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ export default function ProtectedRoute({
return <Outlet />;
}
// Authenticated mode (8971): require login
// Authenticated mode (external port): require login
if (!auth.user) {
return (
<ActivityIndicator className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2" />
+1 -1
View File
@@ -12,7 +12,7 @@ export function useAllowedCameras() {
if (
auth.user?.role === "viewer" ||
auth.user?.role === "admin" ||
!auth.isAuthenticated // anonymous port 5000
!auth.isAuthenticated // anonymous internal port
) {
// return all cameras
return config?.cameras ? Object.keys(config.cameras) : [];