Bring in Spree::PaypalController#payment_method

Original method from the gem. Modified in preceding commit.
This commit is contained in:
Matt-Yorkley
2020-11-18 13:41:37 +00:00
parent 315a5f0fd9
commit 6d0d4b5096

View File

@@ -66,6 +66,10 @@ Spree::PaypalController.class_eval do
private
def payment_method
Spree::PaymentMethod.find(params[:payment_method_id])
end
def permit_parameters!
params.permit(:token, :payment_method_id, :PayerID)
end