twers/re-education

View on GitHub
app/controllers/site_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SiteController < ApplicationController
  def about
  end

  def sitemap
    #headers['Content-Type'] = 'application/xml'
    @lessonplans = Lessonplan.all
    @last_modify = Lessonplan.order('updated_at').last.updated_at

    render :layout => false, :formats => :xml
  end

end