feat: Add tool for reading issues tab

This commit is contained in:
Petr Mironychev
2025-10-13 18:33:17 +02:00
parent 02863003a9
commit 45df27e749
4 changed files with 325 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include <QJsonArray>
#include <QJsonObject>
#include "GetIssuesListTool.hpp"
#include "ListProjectFilesTool.hpp"
#include "ReadProjectFileByNameTool.hpp"
#include "ReadVisibleFilesTool.hpp"
@ -43,6 +44,7 @@ void ToolsFactory::registerTools()
registerTool(new ReadProjectFileByNameTool(this));
registerTool(new ListProjectFilesTool(this));
registerTool(new SearchInProjectTool(this));
registerTool(new GetIssuesListTool(this));
LOG_MESSAGE(QString("Registered %1 tools").arg(m_tools.size()));
}