This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/controllers/sitemaps_controller.rb
2019-04-21 16:39:24 -07:00

17 lines
229 B
Ruby

class SitemapsController < ApplicationController
layout :false
before_action :init_sitemap
def index
@forums = Forum.all
end
private
def init_sitemap
headers['Content-Type'] = 'application/xml'
end
end