Class: Workarea::Storefront::PagesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/workarea/storefront/pages_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_layout, #current_user_info, #health_check, #layout_content

Methods included from OrderLookup

#lookup_order, #lookup_order=

Methods included from CurrentCheckout

#clear_current_order, #completed_order, #completed_order=, #current_checkout, #current_order, #current_order=, #current_shipping, #current_shippings, #logout

Instance Method Details

#accessibilityObject



19
# File 'app/controllers/workarea/storefront/pages_controller.rb', line 19

def accessibility; end

#browser_configObject



20
# File 'app/controllers/workarea/storefront/pages_controller.rb', line 20

def browser_config; end

#home_pageObject



11
12
13
14
15
16
# File 'app/controllers/workarea/storefront/pages_controller.rb', line 11

def home_page
  @page = Storefront::ContentViewModel.new(
    Content.for('home_page'),
    view_model_options
  )
end

#robotsObject



18
# File 'app/controllers/workarea/storefront/pages_controller.rb', line 18

def robots; end

#showObject

Raises:

  • (InvalidDisplay)


5
6
7
8
9
# File 'app/controllers/workarea/storefront/pages_controller.rb', line 5

def show
  model = Content::Page.find_by(slug: params[:id])
  raise InvalidDisplay unless model.active? || current_user.try(:admin?)
  @page = Storefront::PageViewModel.new(model, view_model_options)
end

#web_manifestObject



21
# File 'app/controllers/workarea/storefront/pages_controller.rb', line 21

def web_manifest; end