From 0fdf5776124ac31dcabfe7d6a09853b478c598d7 Mon Sep 17 00:00:00 2001 From: Kirill Date: Fri, 28 Nov 2025 15:22:42 +0300 Subject: [PATCH] feat(tgbot-front): add consts for titles and revs number --- modules/bot/front/include/constants.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/bot/front/include/constants.hpp b/modules/bot/front/include/constants.hpp index df7b534..e384186 100644 --- a/modules/bot/front/include/constants.hpp +++ b/modules/bot/front/include/constants.hpp @@ -3,7 +3,9 @@ #include namespace BotConstants { - const int64_t NULL_PAYLOAD = -1; + const int64_t NULL_PAYLOAD = -1; // Default value для payload + const int64_t DISP_TITLES_NUM = 6; // Количество тайтлов, отображаемых на страничке + const int64_t DISP_REVIEW_NUM = 4; // Количество ревью, отображаемых на страничке namespace Button { const std::string FIND_ANIME = "Найти аниме";