rosa-build/app/controllers/sitemap_controller.rb

9 lines
187 B
Ruby

class SitemapController < ApplicationController
skip_after_action :verify_authorized
def robots
render file: 'sitemap/robots', layout: false, content_type: Mime::TEXT
end
end