config/routes.rb in pay-6.8.1 vs config/routes.rb in pay-7.0.0

- old
+ new

@@ -2,7 +2,8 @@ Pay::Engine.routes.draw do resources :payments, only: [:show], module: :pay post "webhooks/stripe", to: "pay/webhooks/stripe#create" if Pay::Stripe.enabled? post "webhooks/braintree", to: "pay/webhooks/braintree#create" if Pay::Braintree.enabled? - post "webhooks/paddle", to: "pay/webhooks/paddle#create" if Pay::Paddle.enabled? + post "webhooks/paddle_billing", to: "pay/webhooks/paddle_billing#create" if Pay::PaddleBilling.enabled? + post "webhooks/paddle_classic", to: "pay/webhooks/paddle_classic#create" if Pay::PaddleClassic.enabled? end