Quellcode durchsuchen

DK-62 remove obsolete todo

Bence Balint vor 2 Jahren
Ursprung
Commit
70de991993

+ 1 - 1
components/dk/src/pairing_service/pair_controller.cpp

@@ -33,7 +33,7 @@ http::Response PairController::post(const http::Request &request) {
     DisplayManager::setMessage("sending request");
 
     auto client = http::Client(CONFIG_DK_HTTP_CLIENT_TIMEOUT);
-    nlohmann::json data = { // TODO get ID from efuse or nvs
+    nlohmann::json data = {
         { "device_uuid", DK_DEVICE_ID },
         { "firebase_token", firebaseToken }
     };

+ 1 - 1
components/dk/src/pairing_service/verify_controller.cpp

@@ -33,7 +33,7 @@ http::Response VerifyController::post(const http::Request &request) {
     DisplayManager::setMessage("verifying");
 
     auto client = http::Client(CONFIG_DK_HTTP_CLIENT_TIMEOUT);
-    nlohmann::json data = { // TODO get ID from efuse or nvs
+    nlohmann::json data = {
         { "device_uuid", DK_DEVICE_ID },
         { "pairing_id", pairingId }
     };