diaspora/app/presenters/photo_presenter.rb

33 lines
605 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
def as_api_json
{
dimensions: {
height: height,
width: width
},
sizes: {
small: url(:thumb_small),
medium: url(:thumb_medium),
large: url(:scaled_full)
}
}
end
end