From: Michael Tremer Date: Tue, 15 Jul 2025 11:10:19 +0000 (+0000) Subject: api: Rename the events streaming function X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93e9b8b2e0e58e7e3dfe1859d3cb6d111a0bdfb8;p=pbs.git api: Rename the events streaming function Signed-off-by: Michael Tremer --- diff --git a/src/api/events.py b/src/api/events.py index c0f945ec..4bcd5c52 100644 --- a/src/api/events.py +++ b/src/api/events.py @@ -30,7 +30,7 @@ router = fastapi.APIRouter( ) @router.websocket("") -async def stream(websocket: fastapi.WebSocket): +async def events(websocket: fastapi.WebSocket): # Accept the connection await websocket.accept()