• Joined on 2026-02-28
claude pushed to main at admin/iot-connector 2026-03-05 14:22:06 +00:00
12218223ce fix: resolve 3 frontend issues (#27, #28, #30)
c2dbc03943 fix: resolve 4 backend issues (#32, #33, #34, #35)
Compare 2 commits »
claude opened issue admin/iot-connector#35 2026-03-05 14:08:31 +00:00
Fehlende Validierung: description ohne max_length, tags ohne Limits
claude opened issue admin/iot-connector#34 2026-03-05 14:08:23 +00:00
Health-Endpoint greift auf private Cache-Attribute zu
claude opened issue admin/iot-connector#33 2026-03-05 14:08:16 +00:00
NotificationCache-Reload nutzt separate Session statt DI
claude opened issue admin/iot-connector#32 2026-03-05 14:08:08 +00:00
N+1 Query in ReadingService.get_latest – list_by_box statt direktem Lookup
claude opened issue admin/iot-connector#30 2026-03-05 13:58:56 +00:00
DESIGN.md: Undokumentierte Tokens und neue Tab-Konvention ergaenzen
claude opened issue admin/iot-connector#29 2026-03-05 13:58:41 +00:00
NotificationsView Tab-Stil vereinheitlichen (Bottom-Border)
claude opened issue admin/iot-connector#28 2026-03-05 13:58:14 +00:00
Hardcoded #fff durch var(--text-on-color) ersetzen
claude opened issue admin/iot-connector#27 2026-03-05 13:58:01 +00:00
Inline color-mix() durch CSS-Variablen ersetzen
claude closed issue admin/iot-connector#15 2026-03-05 12:41:19 +00:00
[Vorschlag] Settings- und Hilfe-Tabs visuell ueberarbeiten
claude commented on issue admin/iot-connector#15 2026-03-05 12:41:13 +00:00
[Vorschlag] Settings- und Hilfe-Tabs visuell ueberarbeiten

Umgesetzt in 10e77c0:

  • Tab-Stil: Pill-Group → Bottom-Border-Indicator (GitHub/VS Code Style)
  • Icons: Heroicon SVGs für alle Tabs (Settings: Zahnrad, Signal, DB, Chart, Shield, Uhr;…
claude pushed to main at admin/iot-connector 2026-03-05 12:41:05 +00:00
10e77c0c70 feat: visual overhaul of Settings and Hilfe tabs (#15)
claude pushed to main at admin/iot-connector 2026-03-05 07:39:11 +00:00
6a19652ee4 fix: resolve 6 priority-high issues (#1, #2, #4, #5, #9, #11)
8357af84a6 docs: add vue-debug skill + enhance testing-guide (#26)
aa6347d785 feat: sensor renaming + unit editing (#25)
Compare 3 commits »
claude closed issue admin/iot-connector#1 2026-03-05 07:33:28 +00:00
CSRF-Protection auf state-changing Endpoints fehlt
claude closed issue admin/iot-connector#5 2026-03-05 07:33:27 +00:00
Keine Unit-Tests fuer bridge_config_service.py
claude closed issue admin/iot-connector#11 2026-03-05 07:33:26 +00:00
Settings-Tabs laden Config jeweils einzeln statt zentral
claude closed issue admin/iot-connector#4 2026-03-05 07:33:25 +00:00
WebSocket-Reconnect-Status im Frontend nicht sichtbar
claude closed issue admin/iot-connector#9 2026-03-05 07:33:24 +00:00
SparklinePopover ohne aria-label fuer Screen-Reader
claude closed issue admin/iot-connector#2 2026-03-05 07:33:23 +00:00
sensor_key ohne Regex-Validierung in schemas.py
claude commented on issue admin/iot-connector#1 2026-03-05 07:33:17 +00:00
CSRF-Protection auf state-changing Endpoints fehlt

Done

Implemented Double Submit Cookie pattern for CSRF protection:

  • New csrf.py middleware sets a non-HttpOnly csrf_token cookie and validates the X-CSRF-Token header on POST/PATCH/PUT/D…