mirror of
https://github.com/marcogll/talia_bot.git
synced 2026-01-13 21:35:19 +00:00
- Implements placeholder logic for the `agenda`, `citas`, `equipo`, `aprobaciones`, and `servicios` modules. - Integrates all new module functions into the `button` handler in `app/main.py` to make the bot's menus functional. - Fixes a newline formatting bug in the text responses to ensure they render correctly in Telegram. - Updates `tasks.md` to reflect the progress on Phase 3.
13 lines
392 B
Python
13 lines
392 B
Python
# app/modules/citas.py
|
|
|
|
def request_appointment():
|
|
"""
|
|
Provides a link for scheduling an appointment.
|
|
"""
|
|
# TODO: Integrate with a real scheduling service or n8n workflow
|
|
response_text = (
|
|
"Para agendar una cita, por favor utiliza el siguiente enlace: \n\n"
|
|
"[Enlace de Calendly](https://calendly.com/user/appointment-link)"
|
|
)
|
|
return response_text
|