Fixed from credenitals to credentials (#9)

This commit is contained in:
Duc Ha 2022-06-02 23:21:14 +10:00 committed by GitHub
parent d844e41d3b
commit 74ef924fea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -50,7 +50,7 @@
popup_message_text = ""; popup_message_text = "";
popup_message.show(); popup_message.show();
await api_post(server + "/api/v1/wifi/set_credenitals", { await api_post(server + "/api/v1/wifi/set_credentials", {
wifi_mode: mode_select.get_value(), wifi_mode: mode_select.get_value(),
ap_ssid: ap_ssid_input.get_value(), ap_ssid: ap_ssid_input.get_value(),
ap_pass: ap_pass_input.get_value(), ap_pass: ap_pass_input.get_value(),
@ -134,7 +134,7 @@
{#if current_tab == "WiFi"} {#if current_tab == "WiFi"}
<tab-content> <tab-content>
<div class="grid"> <div class="grid">
{#await api_get(server + "/api/v1/wifi/get_credenitals")} {#await api_get(server + "/api/v1/wifi/get_credentials")}
<div class="value-name">Mode:</div> <div class="value-name">Mode:</div>
<div><Spinner /></div> <div><Spinner /></div>
<div class="value-name">SSID:</div> <div class="value-name">SSID:</div>

View File

@ -296,7 +296,7 @@ static esp_err_t system_info_get_handler(httpd_req_t* req) {
return ESP_OK; return ESP_OK;
} }
static esp_err_t wifi_get_credenitals_handler(httpd_req_t* req) { static esp_err_t wifi_get_credentials_handler(httpd_req_t* req) {
httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*"); httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
httpd_resp_set_type(req, "application/json"); httpd_resp_set_type(req, "application/json");
cJSON* root = cJSON_CreateObject(); cJSON* root = cJSON_CreateObject();
@ -338,7 +338,7 @@ static esp_err_t wifi_get_credenitals_handler(httpd_req_t* req) {
return ESP_OK; return ESP_OK;
} }
static esp_err_t wifi_set_credenitals_handler(httpd_req_t* req) { static esp_err_t wifi_set_credentials_handler(httpd_req_t* req) {
httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*"); httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
int total_length = req->content_len; int total_length = req->content_len;
int cur_len = 0; int cur_len = 0;
@ -605,14 +605,14 @@ const httpd_uri_t uri_handlers[] = {
.handler = wifi_list_get_handler, .handler = wifi_list_get_handler,
.user_ctx = NULL}, .user_ctx = NULL},
{.uri = "/api/v1/wifi/set_credenitals", {.uri = "/api/v1/wifi/set_credentials",
.method = HTTP_POST, .method = HTTP_POST,
.handler = wifi_set_credenitals_handler, .handler = wifi_set_credentials_handler,
.user_ctx = NULL}, .user_ctx = NULL},
{.uri = "/api/v1/wifi/get_credenitals", {.uri = "/api/v1/wifi/get_credentials",
.method = HTTP_GET, .method = HTTP_GET,
.handler = wifi_get_credenitals_handler, .handler = wifi_get_credentials_handler,
.user_ctx = NULL}, .user_ctx = NULL},
/*************** HTTP ***************/ /*************** HTTP ***************/