We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25caa46 commit 004b2e7Copy full SHA for 004b2e7
src/handlers/search.rs
@@ -61,7 +61,11 @@ pub async fn search_admin(
61
}
62
63
/// Perform search. Reads offset/limit and max_relations/max_content_items from query.
64
-pub async fn do_search(ctx: Arc<Ctx>, mut query: SearchQuery, is_admin: bool) -> Result<SearchResults> {
+pub async fn do_search(
65
+ ctx: Arc<Ctx>,
66
+ mut query: SearchQuery,
67
+ is_admin: bool,
68
+) -> Result<SearchResults> {
69
// Clean and normalize the query string.
70
query.query = clean_query(&query.query);
71
0 commit comments