Sha256: 17981c56ec907ab347c50af3fd1500e4ca8f61afc7953d5b715c3ebdbb409eb7
Contents?: true
Size: 582 Bytes
Versions: 11
Compression:
Stored size: 582 Bytes
Contents
module Spree class ContentController < 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 :action => params[:path] } end end def cvv respond_with do |format| format.html { render :layout => false } end end end end
Version data entries
11 entries across 11 versions & 1 rubygems