534acfbf96
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
20 lines
574 B
Ruby
20 lines
574 B
Ruby
class Api::V1::Accounts::Contacts::ContactInboxesController < Api::V1::Accounts::BaseController
|
|
before_action :ensure_contact
|
|
before_action :ensure_inbox, only: [:create]
|
|
|
|
def create
|
|
source_id = params[:source_id] || SecureRandom.uuid
|
|
@contact_inbox = ContactInbox.create!(contact: @contact, inbox: @inbox, source_id: source_id)
|
|
end
|
|
|
|
private
|
|
|
|
def ensure_inbox
|
|
@inbox = Current.account.inboxes.find(params[:inbox_id])
|
|
authorize @inbox, :show?
|
|
end
|
|
|
|
def ensure_contact
|
|
@contact = Current.account.contacts.find(params[:contact_id])
|
|
end
|
|
end
|