RUBYCRITIC
# frozen_string_literal: true
module ProductConcern - ProductConcern has no descriptive comment
def product_params
params.require(:product).permit(:identifier, :amount_in_cents, :quantity_available, :description, :name, attachments_attributes: %i[file _destroy id],
custom_attributes: {}, additional_attributes: {})
end
end