diff --git a/app/controllers/spree/admin/tax_categories_controller.rb b/app/controllers/spree/admin/tax_categories_controller.rb index 26cff4479f..e4f7e4bff6 100644 --- a/app/controllers/spree/admin/tax_categories_controller.rb +++ b/app/controllers/spree/admin/tax_categories_controller.rb @@ -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