| 503 | } |
| 504 | |
| 505 | esp_err_t loggedOutHandler(httpd_req_t *req) { |
| 506 | #ifdef PART_04MB |
| 507 | sendText(req, "text/html", ""); |
| 508 | #else |
| 509 | serveWebUIFile(req, "text/html", true, logout_html, logout_html_size); |
| 510 | #endif |
| 511 | return ESP_OK; |
| 512 | } |
| 513 | |
| 514 | esp_err_t updateFromSdHandler(httpd_req_t *req) { |
| 515 | if (!checkUserWebAuth(req)) return ESP_OK; |
nothing calls this directly
no test coverage detected