engine/app/controllers/admin/sitemaps_controller.rb

17 lines
272 B
Ruby
Raw Normal View History

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