Sha256: 8f3b3f09af52b9d34427bc40121af8dd8c79f4b9fc39394ff9b82201882d517f
Contents?: true
Size: 548 Bytes
Versions: 13
Compression:
Stored size: 548 Bytes
Contents
class ContentController < Spree::BaseController # Don't serve local files or static assets before_filter { render_404 if params[:path] =~ /(\.|\\)/ } rescue_from ActionView::MissingTemplate, :with => :render_404 caches_page :show, :index, :if => Proc.new { Spree::Config[:cache_static_content] } respond_to :html def show respond_with do |format| format.html { render :template => params[:path] } end end def cvv respond_with do |format| format.html { render "cvv", :layout => false } end end end
Version data entries
13 entries across 13 versions & 6 rubygems