engine/app/controllers/pages_controller.rb

12 lines
247 B
Ruby
Raw Normal View History

class PagesController < ActionController::Base
include Locomotive::Routing::SiteDispatcher
before_filter :require_site
2010-05-11 21:38:52 +00:00
def show
logger.debug "fullpath = #{request.fullpath}"
# @page = current_site.pages.find
end
end