Class: ContentController

Inherits:
Spree::BaseController show all
Defined in:
app/controllers/content_controller.rb

Instance Method Summary collapse

Methods included from SpreeBase

included

Methods inherited from ActionController::Base

#respond_with

Instance Method Details

#cvvObject



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

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

#showObject



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

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