SysMO-DB/seek

View on GitHub
app/controllers/saved_searches_controller.rb

Summary

Maintainability
A
35 mins
Test Coverage
class SavedSearchesController < ApplicationController

  def show
    saved_search = SavedSearch.find_by_id(params[:id])

    respond_to do |format|
      if saved_search
        #params[:search_query] = saved_search.search_query
        #params[:search_type] = saved_search.search_query
        include_external_search = saved_search.include_external_search? ? "1" : "0"
        format.html { redirect_to(:controller=>"search",:action => "index", :search_query => saved_search.search_query,
            :search_type => saved_search.search_type,
            :include_external_search=>include_external_search,
            :saved_search => true)}
        format.xml  { head :ok }
      else
        flash[:error]="Couldn't find the requested search."
        format.html { redirect_to :back }
      end
    end
  end  
  
end