mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 17:12:45 +08:00
correct anon search
This commit is contained in:
parent
2da0019228
commit
6f63f4fe17
|
@ -15,7 +15,7 @@ function searchForTerm(term, opts) {
|
|||
};
|
||||
}
|
||||
|
||||
return Discourse.ajax('/search/', { data: data, method: 'POST' }).then(function(results){
|
||||
return Discourse.ajax('/search/query', { data: data }).then(function(results){
|
||||
// Topics might not be included
|
||||
if (!results.topics) { results.topics = []; }
|
||||
if (!results.users) { results.users = []; }
|
||||
|
|
|
@ -387,7 +387,7 @@ Discourse::Application.routes.draw do
|
|||
get "category/*path" => "categories#redirect"
|
||||
|
||||
get "top" => "list#top"
|
||||
post "search" => "search#query"
|
||||
get "search/query" => "search#query"
|
||||
|
||||
# Topics resource
|
||||
get "t/:id" => "topics#show"
|
||||
|
|
Loading…
Reference in New Issue
Block a user