diff options
author | Daniel DeLeo <dan@opscode.com> | 2011-02-12 11:28:43 -0800 |
---|---|---|
committer | Daniel DeLeo <dan@opscode.com> | 2011-02-12 11:28:43 -0800 |
commit | 2655cd13f2924e77fead8c629656a5196b599626 (patch) | |
tree | 683728aab2a556639a2d9b6f35e2087152542d72 /chef-server-api/app | |
parent | d83efaec32a5ffc8c7077b6d4cc3a675ebf1a89b (diff) | |
download | chef-2655cd13f2924e77fead8c629656a5196b599626.tar.gz |
fix routing to the search indices
Diffstat (limited to 'chef-server-api/app')
-rw-r--r-- | chef-server-api/app/controllers/search.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chef-server-api/app/controllers/search.rb b/chef-server-api/app/controllers/search.rb index 8677b669ef..1131c27034 100644 --- a/chef-server-api/app/controllers/search.rb +++ b/chef-server-api/app/controllers/search.rb @@ -27,7 +27,7 @@ class Search < Application def index indexes = valid_indexes - display(indexes.inject({}) { |r,i| r[i] = absolute_url(:search, i); r }) + display(indexes.inject({}) { |r,i| r[i] = absolute_url(:search_show, i); r }) end def valid_indexes |