5 lines
121 B
Ruby
5 lines
121 B
Ruby
class BasePresenter
|
|
def self.as_collection(collection)
|
|
collection.map{|object| self.new(object).as_json}
|
|
end
|
|
end
|