class Rails::Generators::RespondersControllerGenerator

def attributes_params

def attributes_params
  "#{singular_table_name}_params"
end

def flash?

def flash?
  if defined?(ApplicationController)
    !ApplicationController.responder.ancestors.include?(Responders::FlashResponder)
  else
    Rails.application.config.responders.flash_keys.blank?
  end
end