diaspora/app/presenters/photo_presenter.rb
2017-09-17 19:29:15 +02:00

18 lines
332 B
Ruby

# frozen_string_literal: true
class PhotoPresenter < BasePresenter
def base_hash
{ id: id,
guid: guid,
dimensions: {
height: height,
width: width
},
sizes: {
small: url(:thumb_small),
medium: url(:thumb_medium),
large: url(:scaled_full)
}
}
end
end