12 lines
289 B
Ruby
12 lines
289 B
Ruby
|
|
class AvatarPresenter < BasePresenter
|
|
|
|
DEFAULT_IMAGE = ActionController::Base.helpers.image_path('user/default.png')
|
|
|
|
def base_hash
|
|
{ small: image_url_small || DEFAULT_IMAGE,
|
|
medium: image_url_medium || DEFAULT_IMAGE,
|
|
large: image_url || DEFAULT_IMAGE
|
|
}
|
|
end
|
|
end
|