feat: Add /horario option and replace /start with /cancelar in UI keyboard.

This commit is contained in:
Marco Gallegos
2025-12-23 09:07:36 -06:00
parent 6bec34d193
commit 55b485d716

View File

@@ -6,11 +6,14 @@ def main_actions_keyboard(is_registered: bool = False) -> ReplyKeyboardMarkup:
keyboard = [] keyboard = []
if not is_registered: if not is_registered:
keyboard.append(["/registro"]) keyboard.append(["/registro"])
keyboard.extend([ keyboard.extend(
["/vacaciones", "/permiso"], [
["/links", "/start"], ["/horario"],
]) ["/vacaciones", "/permiso"],
["/links", "/cancelar"],
]
)
return ReplyKeyboardMarkup( return ReplyKeyboardMarkup(
keyboard, keyboard,