mirror of
https://github.com/marcogll/vanessa_bot_vanity.git
synced 2026-01-13 13:25:16 +00:00
22 lines
520 B
Python
22 lines
520 B
Python
from telegram import ReplyKeyboardMarkup
|
|
|
|
|
|
def main_actions_keyboard(is_registered: bool = False) -> ReplyKeyboardMarkup:
|
|
"""Teclado inferior con comandos directos (un toque lanza el flujo)."""
|
|
keyboard = []
|
|
if not is_registered:
|
|
keyboard.append(["/registro"])
|
|
|
|
keyboard.extend(
|
|
[
|
|
["/horario"],
|
|
["/vacaciones", "/permiso"],
|
|
["/links", "/cancelar"],
|
|
]
|
|
)
|
|
|
|
return ReplyKeyboardMarkup(
|
|
keyboard,
|
|
resize_keyboard=True,
|
|
)
|