2020-06-07 08:28:05 +00:00
|
|
|
class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::BaseController
|
2020-01-13 05:47:03 +00:00
|
|
|
def index
|
2020-06-07 08:28:05 +00:00
|
|
|
@conversations = Current.account.conversations.includes(
|
2020-09-19 07:16:34 +00:00
|
|
|
:assignee, :contact, :inbox, :taggings
|
2020-01-13 05:47:03 +00:00
|
|
|
).where(inbox_id: inbox_ids, contact_id: permitted_params[:contact_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def inbox_ids
|
2021-06-11 06:14:31 +00:00
|
|
|
if Current.user.administrator? || Current.user.agent?
|
2021-03-29 17:56:20 +00:00
|
|
|
Current.user.assigned_inboxes.pluck(:id)
|
2020-01-13 05:47:03 +00:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def permitted_params
|
|
|
|
params.permit(:contact_id)
|
|
|
|
end
|
|
|
|
end
|