Permit specific params in tax_categories controller

This commit is contained in:
Luis Ramos
2020-02-25 18:03:08 +00:00
parent b99d4ab627
commit 9681437fba

View File

@@ -14,6 +14,12 @@ module Spree
end
end
end
private
def permitted_resource_params
params.require(:tax_category).permit(:name, :description, :is_default)
end
end
end
end