From 85cd9452511f08c7e9b220da15931c428de3cb33 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Tue, 2 Jun 2026 10:30:40 +0200 Subject: [PATCH] changed run to path param --- stand/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/api.py b/stand/api.py index 54c0654..fbb0970 100644 --- a/stand/api.py +++ b/stand/api.py @@ -12,7 +12,7 @@ from utils.annotations import Beamline, PGroup router = APIRouter() -@router.post("/tables/{pgroup}/append") +@router.post("/pgroups/{pgroup}/runs/{run}") def append(beamline: Beamline, pgroup: PGroup, run: int, row: dict[str, Any]): lib = adb.get(beamline)