diaspora/app/helpers/application_helper.rb

9 lines
181 B
Ruby

module ApplicationHelper
def object_path(object)
eval("#{object.class.to_s.underscore}_path(object)")
end
def object_fields(object)
object.attributes.keys
end
end