Handle requests for the infinite scroll page.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 440 | |
| 441 | |
| 442 | async def infinite_scroll_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 443 | """Handle requests for the infinite scroll page.""" |
| 444 | await send_html_response( |
| 445 | send, |
| 446 | INFINITE_SCROLL, |
| 447 | ) |
| 448 | |
| 449 | |
| 450 | async def resource_loading_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected