mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
18 lines
456 B
Ruby
18 lines
456 B
Ruby
class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::Contacts::BaseController
|
|
def index
|
|
@conversations = Current.account.conversations.includes(
|
|
:assignee, :contact, :inbox, :taggings
|
|
).where(inbox_id: inbox_ids, contact_id: @contact.id)
|
|
end
|
|
|
|
private
|
|
|
|
def inbox_ids
|
|
if Current.user.administrator? || Current.user.agent?
|
|
Current.user.assigned_inboxes.pluck(:id)
|
|
else
|
|
[]
|
|
end
|
|
end
|
|
end
|