HandlerFactory: Wire up HandlerFeedGenerator

This commit is contained in:
Albert S. 2022-03-27 19:52:45 +02:00
parent bcc3737d88
commit c30e09d44d
1 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,7 @@ SOFTWARE.
#include "handlerpagedelete.h"
#include "handlerusersettings.h"
#include "handlerversion.h"
#include "handlerfeedgenerator.h"
std::unique_ptr<Handler> HandlerFactory::createHandler(const std::string &action, Session &userSession)
{
if(action == "" || action == "index")
@ -84,6 +85,10 @@ std::unique_ptr<Handler> HandlerFactory::createHandler(const std::string &action
{
return produce<HandlerVersion>(userSession);
}
if(action == "feed")
{
return produce<HandlerFeedGenerator>(userSession);
}
return produce<HandlerInvalidAction>(userSession);
}