diff --git a/handlers/handlerfactory.cpp b/handlers/handlerfactory.cpp index 392c717..ffd48e4 100644 --- a/handlers/handlerfactory.cpp +++ b/handlers/handlerfactory.cpp @@ -34,6 +34,7 @@ SOFTWARE. #include "handlerpagedelete.h" #include "handlerusersettings.h" #include "handlerversion.h" +#include "handlerfeedgenerator.h" std::unique_ptr HandlerFactory::createHandler(const std::string &action, Session &userSession) { if(action == "" || action == "index") @@ -84,6 +85,10 @@ std::unique_ptr HandlerFactory::createHandler(const std::string &action { return produce(userSession); } + if(action == "feed") + { + return produce(userSession); + } return produce(userSession); }