musifrat_app/app/controllers/public/seo_controller.rb
Nicolas Bally a1aef72f7f intial
2019-02-03 15:12:58 +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