iachat/app/services/messages
Pranav 9e97cc0cdd
fix(whatsapp): Preserve ordered list numbering in messages (#13339)
- Fix ordered lists being sent as unordered lists in WhatsApp
integrations
- The WhatsApp markdown renderer was converting all lists to bullet
points (-), ignoring numbered list formatting
- Added ordered list support by tracking list_type and list_item_number
from CommonMarker AST metadata

Before:
Input: "1. First\n2. Second\n3. Third"
Output: "- First\n- Second\n- Third"

After:

Input: "1. First\n2. Second\n3. Third"
Output: "1. First\n2. Second\n3. Third"
2026-01-22 14:14:40 +04:00
..
markdown_renderers fix(whatsapp): Preserve ordered list numbering in messages (#13339) 2026-01-22 14:14:40 +04:00
in_reply_to_message_builder.rb feat: support reply to for outgoing message in WhatsApp (#8107) 2023-10-19 13:24:46 -07:00
markdown_renderer_service.rb fix: Preserve double newlines in text-based messaging channels (#13055) 2025-12-12 16:35:53 +05:30
mention_service.rb feat: Add the ability to mention team in private message (#11758) 2025-07-02 19:57:59 +05:30
new_message_notification_service.rb fix: Prevent duplicate notifications for mentions (#10675) 2025-01-13 11:20:31 +05:30
send_email_notification_service.rb chore(sidekiq): log ActiveJob class and job_id on dequeue (#12704) 2025-10-22 20:20:37 -07:00
status_update_service.rb feat: API Endpoints to update message status (#11387) 2025-04-29 15:33:11 -07:00