feat: ide-lane hardening (ci ampel in auftragsbuch, hermes auto-bugfix, cleanup)
Ampel / ampel (push) Failing after 22s

This commit is contained in:
Hitonabi
2026-08-07 11:47:50 +02:00
parent c3851f8e25
commit a5410642fa
25 changed files with 75 additions and 1678 deletions
-10
View File
@@ -1,10 +0,0 @@
from fastapi import APIRouter
from services import sysadmin_report
router = APIRouter(prefix="/api")
@router.post("/sysadmin/report/trigger")
async def trigger_sysadmin_report() -> dict:
"""Stößt den Sysadmin-Telegram-Report sofort manuell an."""
success = await sysadmin_report.generate_and_send_report()
return {"ok": success, "message": "Report wurde angestoßen und via Telegram versendet." if success else "Fehler beim Versenden des Reports."}