module ActiveAdmin::Resource::Attributes

def default_attributes

def default_attributes
  resource_class.columns.each_with_object({}) do |c, attrs|
    unless reject_col?(c)
      name = c.name.to_sym
      attrs[name] = (method_for_column(name) || name)
    end
  end
end