* fix login from multiple clients #819
* fix login screen on small displays
This commit is contained in:
lumapu 2023-04-04 13:51:11 +02:00
parent 521c7ca307
commit 6533143e80
8 changed files with 101 additions and 116 deletions

View file

@ -8,6 +8,7 @@
#include "defines.h"
#include "hm/hmSystem.h"
#include "ESPAsyncWebServer.h"
// abstract interface to App. Make members of App accessible from child class
// like web or API without forward declaration
@ -47,7 +48,7 @@ class IApp {
virtual uint32_t getMqttRxCnt() = 0;
virtual uint32_t getMqttTxCnt() = 0;
virtual bool getProtection() = 0;
virtual bool getProtection(AsyncWebServerRequest *request) = 0;
};
#endif /*__IAPP_H__*/