Files
Sean Morley 1a6a7be964 Implement global search functionality with new API and UI components
- Added a new global search API endpoint to handle search queries across various entities including locations, collections, and users.
- Introduced SearchHitSerializer to standardize the response format for search results.
- Developed a command palette for enhanced search experience, allowing users to quickly access search functionalities.
- Created frontend components for displaying search results, including a dedicated SearchResultRow component.
- Implemented recent searches feature to improve user experience by remembering previous queries.
- Updated localization strings to support new search features and improve user guidance.
- Added tests to ensure the reliability of the search functionality and its integration with existing components.
2026-06-03 18:43:33 -04:00

4 lines
144 B
Python

from adventures.services.search.global_search import global_search, SearchValidationError
__all__ = ['global_search', 'SearchValidationError']