Class: Spree::SolidusContentController

Inherits:
StoreController
  • Object
show all
Defined in:
app/controllers/spree/solidus_content_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



6
7
8
9
10
11
12
# File 'app/controllers/spree/solidus_content_controller.rb', line 6

def show
  slug = params[:id] || :default
  type = params[:type]

  @entry = ::SolidusContent::Entry.by_type(type).by_slug(slug)
  render action: type
end