(path: str, request: Request)
| 590 | |
| 591 | @router.get("/analytics/{path:path}") |
| 592 | def get_analytics(path: str, request: Request) -> JSONResponse: |
| 593 | return _proxy("GET", f"/api/plugins/analytics/{path}", request, None) |
| 594 | |
| 595 | |
| 596 | @router.get("/automation/{path:path}") |