kaps_app/app/controllers/public/seo_controller.rb
Nicolas Bally d60301e8a7 initial
2019-01-21 01:15:10 +01: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