diaspora/app/presenters/photo_presenter.rb
2014-09-15 01:37:23 +02:00

16 lines
301 B
Ruby

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