| 72 | class AJAX_Handler : public RequestHandler |
| 73 | { |
| 74 | bool canHandle(HTTPMethod method, String uri) { |
| 75 | return uri == "/ajax/status.json"; |
| 76 | } |
| 77 | |
| 78 | bool handle(WebServer& server, HTTPMethod requestMethod, String requestUri) { |
| 79 | if (requestUri != "/ajax/status.json") { |
nothing calls this directly
no outgoing calls
no test coverage detected