diaspora/app/presenters/base_presenter.rb

5 lines
121 B
Ruby

class BasePresenter
def self.as_collection(collection)
collection.map{|object| self.new(object).as_json}
end
end