class CachedController

Controlador para los keywords cacheadas

Public Instance Methods

show() click to toggle source
# File app/controllers/cached_controller.rb, line 26
def show
  news = News.find(params[:id])
  @text = news.text_with_selected_keywords
  render :layout => false  
end