diaspora/app/presenters/photo_presenter.rb
Florian Staudacher 2572fb77fc * refactored text direction detector into helper (also for handlebars)
* added handlebars helper for markdown formatting
* finished port of profile sidebar view to handlebars template
* people_controller refactoring
2014-09-15 01:37:23 +02:00

16 lines
279 B
Ruby

class PhotoPresenter < BasePresenter
def base_hash
{ id: id,
guid: guid,
dimensions: {
h: height,
w: width
},
sizes: {
s: url(:thumb_small),
m: url(:thumb_medium),
l: url(:scaled_full)
}
}
end
end