mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
319 B
Ruby
14 lines
319 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SitemapController < ApplicationController
|
|
layout nil
|
|
|
|
def index
|
|
headers['Content-Type'] = 'application/xml'
|
|
@page_urls = [shops_url, map_url, producers_url, groups_url]
|
|
@enterprises = Enterprise.is_hub
|
|
@groups = EnterpriseGroup.all
|
|
respond_to :xml
|
|
end
|
|
end
|