Commit 1d934095 authored by Rubén Dávila's avatar Rubén Dávila

Add endpoint and service to create Leads

We need to create Leads when customers are requesting a trial for
GL.com. In order to do it we're going to use a service that will call a
custom endpoint on the subscription portal.
parent aa14b62a
# frozen_string_literal: true
resources :trials, only: [:new, :create]
resources :trials, only: [:new] do
collection do
post :create_lead
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment