mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
ESP32 target
This commit is contained in:
@@ -15,6 +15,9 @@ class FSEditor : public AsyncWebHandler {
|
||||
bool _authenticated;
|
||||
uint32_t _startTime;
|
||||
|
||||
private:
|
||||
void getDirList(const String& path, String& output);
|
||||
|
||||
public:
|
||||
#ifdef ESP32
|
||||
FSEditor(const fs::FS& fs, const String& username = String(), const String& password = String());
|
||||
@@ -24,5 +27,7 @@ class FSEditor : public AsyncWebHandler {
|
||||
virtual bool canHandle(AsyncWebServerRequest* request) override final;
|
||||
virtual void handleRequest(AsyncWebServerRequest* request) override final;
|
||||
virtual void handleUpload(AsyncWebServerRequest* request, const String& filename, size_t index, uint8_t* data, size_t len, bool final) override final;
|
||||
virtual bool isRequestHandlerTrivial() override final { return false; }
|
||||
virtual bool isRequestHandlerTrivial() override final {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user