From 55b485d71669c970b3f198522507f3fd2c50a145 Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Tue, 23 Dec 2025 09:07:36 -0600 Subject: [PATCH] feat: Add `/horario` option and replace `/start` with `/cancelar` in UI keyboard. --- app/modules/ui.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app/modules/ui.py b/app/modules/ui.py index 2b9b688..5f6a447 100644 --- a/app/modules/ui.py +++ b/app/modules/ui.py @@ -6,11 +6,14 @@ def main_actions_keyboard(is_registered: bool = False) -> ReplyKeyboardMarkup: keyboard = [] if not is_registered: keyboard.append(["/registro"]) - - keyboard.extend([ - ["/vacaciones", "/permiso"], - ["/links", "/start"], - ]) + + keyboard.extend( + [ + ["/horario"], + ["/vacaciones", "/permiso"], + ["/links", "/cancelar"], + ] + ) return ReplyKeyboardMarkup( keyboard,