Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,7 @@ if(OPTIONX_BUILD_TESTS)
metatrader_paths_test
telegram_dto_test
telegram_signal_parser_test
telegram_signal_bridge_test
)
if(OPTIONX_LIGHTWEIGHT_BRIDGE_SMOKE_TESTS)
list(APPEND OPTIONX_LIGHTWEIGHT_TESTS
Expand Down
2 changes: 2 additions & 0 deletions include/optionx_cpp/bridges/telegram.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@
#include "bridges/telegram/TelegramParsedMessage.hpp"
#include "bridges/telegram/TelegramRawMessage.hpp"
#include "bridges/telegram/TelegramSignalParser.hpp"
#include "bridges/telegram/TelegramSignalBridgeConfig.hpp"
#include "bridges/telegram/TelegramSignalBridge.hpp"

#endif // OPTIONX_HEADER_BRIDGES_TELEGRAM_HPP_INCLUDED
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ namespace optionx::bridges::telegram {

/// \brief Serializes the DTO using worker-compatible field names.
nlohmann::json to_json() const {
validate();
return nlohmann::json{
{"chat_id", chat_id},
{"chat_title", chat_title},
Expand Down
Loading
Loading