Method: Lookbook::ApplicationHelper#landing_path

Defined in:
app/helpers/lookbook/application_helper.rb

#landing_pathObject



20
21
22
23
24
25
26
27
# File 'app/helpers/lookbook/application_helper.rb', line 20

def landing_path
  landing = Lookbook.pages.find(&:landing) || Lookbook.pages.first
  if landing.present?
    lookbook_page_path landing.lookup_path
  else
    lookbook_home_path
  end
end