mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-07-30 23:38:02 -04:00
- 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.
4 lines
144 B
Python
4 lines
144 B
Python
from adventures.services.search.global_search import global_search, SearchValidationError
|
|
|
|
__all__ = ['global_search', 'SearchValidationError']
|