2020-06-07 08:28:05 +00:00
|
|
|
class Api::V1::Accounts::Actions::ContactMergesController < Api::V1::Accounts::BaseController
|
2019-12-24 07:57:25 +00:00
|
|
|
before_action :set_base_contact, only: [:create]
|
|
|
|
before_action :set_mergee_contact, only: [:create]
|
|
|
|
|
|
|
|
def create
|
|
|
|
contact_merge_action = ContactMergeAction.new(
|
2020-06-07 08:28:05 +00:00
|
|
|
account: Current.account,
|
2019-12-24 07:57:25 +00:00
|
|
|
base_contact: @base_contact,
|
|
|
|
mergee_contact: @mergee_contact
|
|
|
|
)
|
|
|
|
contact_merge_action.perform
|
|
|
|
render json: @base_contact
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_base_contact
|
|
|
|
@base_contact = contacts.find(params[:base_contact_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_mergee_contact
|
|
|
|
@mergee_contact = contacts.find(params[:mergee_contact_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def contacts
|
2020-06-07 08:28:05 +00:00
|
|
|
@contacts ||= Current.account.contacts
|
2019-12-24 07:57:25 +00:00
|
|
|
end
|
|
|
|
end
|