a59f32c420
Implemented factory-reset feature Extract factory settings into separate ini file Hide reset/factory reset from guest user Co-authored-by: kasedy <kasedy@gmail.com>
14 lines
507 B
C++
14 lines
507 B
C++
#include <RestartService.h>
|
|
|
|
RestartService::RestartService(AsyncWebServer* server, SecurityManager* securityManager) {
|
|
server->on(RESTART_SERVICE_PATH,
|
|
HTTP_POST,
|
|
securityManager->wrapRequest(std::bind(&RestartService::restart, this, std::placeholders::_1),
|
|
AuthenticationPredicates::IS_ADMIN));
|
|
}
|
|
|
|
void RestartService::restart(AsyncWebServerRequest* request) {
|
|
request->onDisconnect([]() { ESP.restart(); });
|
|
request->send(200);
|
|
}
|