Class: QuickSearch::SupplierPresenter

Inherits:
PinPresenter
  • Object
show all
Defined in:
app/presenters/quick_search/supplier_presenter.rb

Instance Method Summary collapse

Instance Method Details

#profile_image_urlObject



9
10
11
12
13
# File 'app/presenters/quick_search/supplier_presenter.rb', line 9

def profile_image_url
  return unless result.profile_image.present?

  result.profile_image.image_url(width: 80, height: 80)
end

#set_attributesObject



4
5
6
7
# File 'app/presenters/quick_search/supplier_presenter.rb', line 4

def set_attributes
  @title = result.full_name
  @sub_header = result.location_name
end