engine/app/controllers/pages_controller.rb

12 lines
247 B
Ruby

class PagesController < ActionController::Base
include Locomotive::Routing::SiteDispatcher
before_filter :require_site
def show
logger.debug "fullpath = #{request.fullpath}"
# @page = current_site.pages.find
end
end