DEV Community

Discussion on: Integrate the new Stripe Checkout in Ruby on Rails.

Collapse
 
anmolboparai profile image
anmolboparai

this is the routes you need

namespace :stripe do
resources :checkouts
post 'checkout/webhook', to: "checkouts#webhook"
end

resources :subscriptions