rename endpoint

This commit is contained in:
Rick Watson
2019-05-27 21:21:05 +01:00
parent c8857f06ac
commit 71e5830d6c
5 changed files with 7 additions and 8 deletions

View File

@ -1,6 +1,6 @@
#include <SecurityManager.h>
SecurityManager::SecurityManager(AsyncWebServer* server, FS* fs) : SettingsService(server, fs, USERS_PATH, SECURITY_SETTINGS_FILE) {}
SecurityManager::SecurityManager(AsyncWebServer* server, FS* fs) : SettingsService(server, fs, SECURITY_SETTINGS_PATH, SECURITY_SETTINGS_FILE) {}
SecurityManager::~SecurityManager() {}
void SecurityManager::readFromJsonObject(JsonObject& root) {
@ -33,7 +33,6 @@ void SecurityManager::writeToJsonObject(JsonObject& root) {
}
void SecurityManager::begin() {
// read config
readFromFS();
}

View File

@ -12,7 +12,7 @@
#define SECURITY_SETTINGS_FILE "/config/securitySettings.json"
#define USERS_PATH "/rest/users"
#define SECURITY_SETTINGS_PATH "/rest/securitySettings"
#define AUTHORIZATION_HEADER "Authorization"
#define AUTHORIZATION_HEADER_PREFIX "Bearer "