From 7efd7bb6b03f1cb646fc8ed54f61d32c9fca6dcd Mon Sep 17 00:00:00 2001 From: Kirill Date: Thu, 27 Nov 2025 18:13:40 +0300 Subject: [PATCH] Added cursor field to UserContext --- modules/bot/front/include/handlers.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/bot/front/include/handlers.hpp b/modules/bot/front/include/handlers.hpp index 313bee8..b0c5545 100644 --- a/modules/bot/front/include/handlers.hpp +++ b/modules/bot/front/include/handlers.hpp @@ -22,8 +22,8 @@ enum class UserState { }; struct UserContext { - UserState state; - // Информация о тайтле + UserState state; // Текущее состояние пользователя + int64_t cursor; // Текущий курсор пользователя (id тайтла) }; class BotHandlers {