pollen_app/app/controllers/public/seo_controller.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +02:00

19 lines
318 B
Ruby

# -*- encoding : utf-8 -*-
class Public::SeoController < ApplicationController
layout false
def robots
render(:content_type => 'text/plain', :layout => false)
end
def sitemap
@menu_items = MenuItem.where(:parent_id => nil, :enabled => true, :visible => true).order(:position)
end
end