Remove source_id as primary key for contact

This commit is contained in:
Pranav Raj Sreepuram
2019-08-31 11:52:09 +05:30
parent df5c9de87e
commit beda21b84c
3 changed files with 13 additions and 5 deletions

View File

@@ -14,8 +14,12 @@ class Integrations::Facebook::DeliveryStatus
@params.sender['id']
end
def contact_id
@contact ||= ::Contact.find_by(source_id: sender_id)
end
def conversation
@conversation ||= Conversation.find_by(sender_id: sender_id)
@conversation ||= ::Conversation.find_by(sender_id: contact_id)
end
def update_message_status