remove unneeded strong params

This commit is contained in:
Eric Schultz 2019-11-05 13:04:30 -06:00
parent d0c9e12ed0
commit 6667eb6fac

View file

@ -25,10 +25,4 @@ class BillingSubscriptionsController < ApplicationController
@billing_plan = @nonprofit.billing_plan
@billing_subscription = @nonprofit.billing_subscription
end
private
def required_params
params.permit(:nonprofit_id, :billing_plan_id, :stripe_subscription_id, :status)
end
end