Class: Spree::ContentController

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

Instance Method Summary collapse

Methods included from Spree::Core::ControllerHelpers

included

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 'cvv', :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