Files
openfoodnetwork/app/controllers/sitemap_controller.rb
2017-01-10 11:39:17 +00:00

12 lines
276 B
Ruby

class SitemapController < ApplicationController
layout nil
def index
headers['Content-Type'] = 'application/xml'
@pages = ['shops', 'map', 'producers', 'groups']
@enterprises = Enterprise.is_hub
@groups = EnterpriseGroup.all
respond_to :xml
end
end