blob: 0dd10e7f8f4c1f0f9b85d403aa519f602a806874 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class SitemapController < ApplicationController
layout nil
def index
@creations = Creation.all
@tutorials = Tutorial.all
headers['Content-Type'] = 'application/xml'
expires_in(1.hour)
respond_to do |format|
format.xml
end
end
end
|