refinery/refinerycms

View on GitHub
core/app/controllers/refinery/sitemap_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ::Refinery
  class SitemapController < ::Refinery::FastController
    layout nil

    def index
      headers['Content-Type'] = 'application/xml'

      respond_to do |format|
        format.xml do
          @locales = Refinery::I18n.frontend_locales
        end
      end
    end

  end
end