Skip to content

Instantly share code, notes, and snippets.

@jmmastey
Created December 12, 2014 22:06
Show Gist options
  • Save jmmastey/f649b39b4b34c1c8dcce to your computer and use it in GitHub Desktop.
Save jmmastey/f649b39b4b34c1c8dcce to your computer and use it in GitHub Desktop.
def create_customer_leads(posted_data)
customer_leads = []
if posted_data.is_an? Array
posted_data.each do |lead_params|
customer_leads << extract_customer_lead(lead_params)
end
else
customer_leads << extract_customer_lead(posted_data)
end
customer_leads
end
def extract_customer_lead(lead_params)
AcquisitionClient::CustomerLead.extract_customer_lead(posted_data)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment