Handle requests for the secondary page with links.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 277 | |
| 278 | |
| 279 | async def secondary_index_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 280 | """Handle requests for the secondary page with links.""" |
| 281 | await send_html_response( |
| 282 | send, |
| 283 | SECONDARY_INDEX, |
| 284 | ) |
| 285 | |
| 286 | |
| 287 | async def incapsula_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected