Method: Lookbook::ApplicationHelper#landing_path

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

#landing_pathObject



11
12
13
14
15
16
17
18
# File 'app/helpers/lookbook/application_helper.rb', line 11

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