🔐 Removes auth from backend

This commit is contained in:
Rune Harlyk
2024-10-29 20:47:02 +01:00
parent 9923b66208
commit 1c6b9f79c5
41 changed files with 1389 additions and 2212 deletions
+1 -3
View File
@@ -17,7 +17,6 @@
#include <ESPmDNS.h>
#include <PsychicHttp.h>
#include <SecurityManager.h>
#define SLEEP_SERVICE_PATH "/api/sleep"
@@ -31,7 +30,7 @@
class SleepService {
public:
SleepService(PsychicHttpServer *server, SecurityManager *securityManager);
SleepService(PsychicHttpServer *server);
void begin();
@@ -41,7 +40,6 @@ class SleepService {
private:
PsychicHttpServer *_server;
SecurityManager *_securityManager;
esp_err_t sleep(PsychicRequest *request);
protected: