16 lines
283 B
Ruby
16 lines
283 B
Ruby
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 |