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 = []
if not is_registered:
keyboard.append(["/registro"])
keyboard.extend([
["/vacaciones", "/permiso"],
["/links", "/start"],
])
keyboard.extend(
[
["/horario"],
["/vacaciones", "/permiso"],
["/links", "/cancelar"],
]
)
return ReplyKeyboardMarkup(
keyboard,