class Admin::BackendController < AdminAreaController def search @query = params[:query] || '' unless @query.blank? @results = Content.find_with_ferret @query end end def show @content = Content.find(params[:id]) render :template => 'content/show' end end