regression search route was getting in the way

This commit is contained in:
Sam 2015-04-02 17:03:32 +11:00
parent 1f59375c82
commit 214034f34a
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ function searchForTerm(term, opts) {
};
}
return Discourse.ajax('/search/', { data: data }).then(function(results){
return Discourse.ajax('/search/', { data: data, method: 'POST' }).then(function(results){
// Topics might not be included
if (!results.topics) { results.topics = []; }
if (!results.users) { results.users = []; }

View file

@ -387,7 +387,7 @@ Discourse::Application.routes.draw do
get "category/*path" => "categories#redirect"
get "top" => "list#top"
get "search" => "search#query"
post "search" => "search#query"
# Topics resource
get "t/:id" => "topics#show"