Class: Spree::ContentController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/content_controller.rb

Instance Attribute Summary

Attributes included from Spree::Core::ControllerHelpers

#title

Instance Method Summary collapse

Methods included from Spree::Core::ControllerHelpers

#associate_user, included, #try_spree_current_user

Instance Method Details

#cvvObject



17
18
19
20
21
# File 'app/controllers/spree/content_controller.rb', line 17

def cvv
  respond_with do |format|
    format.html { render :layout => false }
  end
end

#showObject



11
12
13
14
15
# File 'app/controllers/spree/content_controller.rb', line 11

def show
  respond_with do |format|
    format.html { render :action => params[:path] }
  end
end