diff options
Diffstat (limited to 'core/src/services/UnifiedSearchService.js')
-rw-r--r-- | core/src/services/UnifiedSearchService.js | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/core/src/services/UnifiedSearchService.js b/core/src/services/UnifiedSearchService.js index 9e16fe1880c..7067c994c90 100644 --- a/core/src/services/UnifiedSearchService.js +++ b/core/src/services/UnifiedSearchService.js @@ -1,23 +1,6 @@ /** - * @copyright 2023, Fon E. Noel NFEBE <fenn25.fn@gmail.com> - * - * @author Fon E. Noel NFEBE <fenn25.fn@gmail.com> - * - * @license AGPL-3.0-or-later - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ import { generateOcsUrl, generateUrl } from '@nextcloud/router' @@ -65,9 +48,10 @@ export async function getProviders() { * @param {string} options.until the search * @param {string} options.limit the search * @param {string} options.person the search + * @param {object} options.extraQueries additional queries to filter search results * @return {object} {request: Promise, cancel: Promise} */ -export function search({ type, query, cursor, since, until, limit, person }) { +export function search({ type, query, cursor, since, until, limit, person, extraQueries = {} }) { /** * Generate an axios cancel token */ @@ -84,6 +68,7 @@ export function search({ type, query, cursor, since, until, limit, person }) { person, // Sending which location we're currently at from: window.location.pathname.replace('/index.php', '') + window.location.search, + ...extraQueries, }, }) @@ -97,7 +82,7 @@ export function search({ type, query, cursor, since, until, limit, person }) { * Get the list of active contacts * * @param {object} filter filter contacts by string - * @param filter.searchTerm + * @param {string} filter.searchTerm the query * @return {object} {request: Promise} */ export async function getContacts({ searchTerm }) { |