feat: Implement conversational flow for proposals

- Implements a multi-step conversational flow for team members to propose activities using `ConversationHandler`.
- Enhances the `aprobaciones` module to allow the owner to approve or reject proposals with inline keyboard buttons.
- Integrates the new conversational and approval workflows into the main application in `app/main.py`.
- Updates `tasks.md` to reflect the completion of the `equipo` and `aprobaciones` modules.
This commit is contained in:
google-labs-jules[bot]
2025-12-15 20:41:07 +00:00
parent 82b0e90faa
commit c603f5003e
4 changed files with 148 additions and 41 deletions

View File

@@ -22,8 +22,8 @@ This file tracks the development tasks for the Talía project.
- [x] Implement `onboarding.py` module.
- [x] Implement `agenda.py` module.
- [x] Implement `citas.py` module.
- [ ] Implement `equipo.py` module.
- [ ] Implement `aprobaciones.py` module.
- [x] Implement `equipo.py` module.
- [x] Implement `aprobaciones.py` module.
- [ ] Implement `servicios.py` module.
- [ ] Implement `admin.py` module.
@@ -41,3 +41,4 @@ This file tracks the development tasks for the Talía project.
- Completed initial project scaffolding.
- Implemented the core logic for the bot, including the central orchestrator, permissions, and onboarding.
- Implemented the `agenda` and `citas` modules.
- Implemented the conversational flow for proposing and approving activities.