feat: sleep chart, bottle-from-stock, growth alert cron

- SleepTimeline component in stats: 7-night bar chart, 19h–11h window,
  NIGHT_SLEEP (indigo) and NAP (violet) blocks, pure CSS positioning
- Bottle modal: fetch available maternal milk lots, chip picker,
  auto-selects oldest, marks selected lot as used after save
- /api/cron/growth-alert: Bearer-auth POST, configurable threshold via
  growth_alert_days SystemConfig key (default 30 days), Pushover alert
  to all family users per baby with no recent weight log
- Admin config ALLOWED_KEYS: add cron_secret + growth_alert_days

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-13 15:58:13 +02:00
parent 24daa5eb15
commit 81d7e5ad73
5 changed files with 229 additions and 6 deletions
+2
View File
@@ -17,6 +17,8 @@ const ALLOWED_KEYS = [
"pushover_app_token",
"allow_registration",
"maintenance_mode",
"cron_secret",
"growth_alert_days",
];
async function requireSuperAdmin() {