mirror of
https://github.com/marcogll/vanessa_bot_vanity.git
synced 2026-01-13 13:25:16 +00:00
19 lines
469 B
Python
19 lines
469 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([
|
|
["/vacaciones", "/permiso"],
|
|
["/links", "/start"],
|
|
])
|
|
|
|
return ReplyKeyboardMarkup(
|
|
keyboard,
|
|
resize_keyboard=True,
|
|
)
|