class Rails::Generators::ScaffoldControllerGenerator

def permitted_params

def permitted_params
  attachments, others = attributes_names.partition { |name| attachments?(name) }
  params = others.map { |name| ":#{name}" }
  params += attachments.map { |name| "#{name}: []" }
  params.join(", ")
end