Body
Build and push images / validate (push) Successful in 19s
Build and push images / build-backend (push) Successful in 1m15s
Build and push images / build-worker (push) Successful in 1m13s
Build and push images / build-frontend (push) Successful in 51s

This commit is contained in:
2026-06-07 15:26:54 +01:00
parent 568dc31e97
commit da9c1e04cb
15 changed files with 104 additions and 15 deletions
Binary file not shown.
+3 -2
View File
@@ -144,8 +144,9 @@ async def intraday_health(
)
metric = result.scalar_one_or_none()
return {
"hr_values": metric.intraday_hr if metric else None,
"body_battery": metric.body_battery if metric else None,
"hr_values": metric.intraday_hr if metric else None,
"body_battery": metric.body_battery if metric else None,
"body_battery_hires": metric.body_battery_hires if metric else None,
}