feat(whatsapp-call): add call recording, transcription, beforeunload termination and documentation

This commit is contained in:
Tanmay Deep Sharma
2026-03-24 13:13:49 +05:30
parent d6eb945d25
commit 504a32214e
19 changed files with 1943 additions and 193 deletions
@@ -0,0 +1,5 @@
class AddMessageIdToWhatsappCalls < ActiveRecord::Migration[7.1]
def change
add_reference :whatsapp_calls, :message, null: true, foreign_key: true, index: true
end
end
@@ -0,0 +1,5 @@
class AddTranscriptToWhatsappCalls < ActiveRecord::Migration[7.1]
def change
add_column :whatsapp_calls, :transcript, :text
end
end