1
0
Fork 0
forked from OpenNeo/impress
impress/app/controllers/sitemap_controller.rb
2011-05-20 20:49:48 -04:00

10 lines
163 B
Ruby

class SitemapController < ApplicationController
layout nil
def index
respond_to do |format|
format.xml { @items = Item.sitemap }
end
end
end