handlers: Introduce HandlerVersion to return the verison string

Este commit está contenido en:
2021-10-10 22:39:35 +02:00
padre c9dc3416d7
commit 7a2f15cabe
Se han modificado 3 ficheros con 32 adiciones y 1 borrados

Ver fichero

@@ -33,7 +33,7 @@ SOFTWARE.
#include "handlerhistory.h"
#include "handlerpagedelete.h"
#include "handlerusersettings.h"
#include "handlerversion.h"
std::unique_ptr<Handler> HandlerFactory::createHandler(const std::string &action, Session &userSession)
{
if(action == "" || action == "index")
@@ -80,6 +80,10 @@ std::unique_ptr<Handler> HandlerFactory::createHandler(const std::string &action
{
return produce<HandlerUserSettings>(userSession);
}
if(action == "version")
{
return produce<HandlerVersion>(userSession);
}
return produce<HandlerInvalidAction>(userSession);
}