impress/app/controllers/sitemap_controller.rb

11 lines
163 B
Ruby
Raw Normal View History

2011-05-20 17:49:48 -07:00
class SitemapController < ApplicationController
layout nil
def index
respond_to do |format|
format.xml { @items = Item.sitemap }
2011-05-20 17:49:48 -07:00
end
end
end