engine/app/controllers/admin/sitemaps_controller.rb
2011-01-22 14:09:29 +01:00

19 lines
298 B
Ruby

module Admin
class SitemapsController < ActionController::Base
include Locomotive::Routing::SiteDispatcher
before_filter :require_site
respond_to :xml
helper 'admin/pages'
def show
@pages = current_site.pages.published
@host = request.host
end
end
end