🔐 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
@@ -19,7 +19,6 @@
#include <Arduino.h>
#include <AnalyticsService.h>
#include <AuthenticationService.h>
#include <BatteryService.h>
#include <FileExplorerService.h>
#include <DownloadFirmwareService.h>
@@ -38,7 +37,6 @@
#include <NTPStatus.h>
#include <PsychicHttp.h>
#include <RestartService.h>
#include <SecuritySettingsService.h>
#include <SleepService.h>
#include <SystemStatus.h>
#include <TaskManager.h>
@@ -78,8 +76,6 @@ class ESP32SvelteKit {
PsychicHttpServer *getServer() { return _server; }
SecurityManager *getSecurityManager() { return &_securitySettingsService; }
EventSocket *getSocket() { return &_socket; }
#if FT_ENABLED(USE_NTP)
@@ -127,7 +123,6 @@ class ESP32SvelteKit {
PsychicHttpServer *_server;
unsigned int _numberEndpoints;
FeaturesService _featureService;
SecuritySettingsService _securitySettingsService;
WiFiService _wifiService;
APService _apService;
EventSocket _socket;
@@ -141,9 +136,6 @@ class ESP32SvelteKit {
#if FT_ENABLED(USE_DOWNLOAD_FIRMWARE)
DownloadFirmwareService _downloadFirmwareService;
#endif
#if FT_ENABLED(USE_SECURITY)
AuthenticationService _authenticationService;
#endif
#if FT_ENABLED(USE_SLEEP)
SleepService _sleepService;
#endif