Skip to content
Extraits de code Groupes Projets
application_helper.rb 181 octets
Newer Older
Raphael Sofaer's avatar
Raphael Sofaer a validé
module ApplicationHelper
  def object_path(object)
    eval("#{object.class.to_s.underscore}_path(object)")
  end

  def object_fields(object)
    object.attributes.keys 
  end
Raphael Sofaer's avatar
Raphael Sofaer a validé
end