mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Consolidated search (#289)
* Update search widget to support consolidated search API endpoint * Finer control over global search * Update release notes * remove unused variable
This commit is contained in:
parent
9543490c21
commit
d7f2c3939b
3 changed files with 129 additions and 30 deletions
|
|
@ -279,6 +279,9 @@ class InvenTreeAPI {
|
|||
// Company attachments require API v95 or newer
|
||||
bool get supportCompanyAttachments => isConnected() && apiVersion >= 95;
|
||||
|
||||
// Consolidated search request API v102 or newer
|
||||
bool get supportsConsolidatedSearch => isConnected() && apiVersion >= 102;
|
||||
|
||||
// Are plugins enabled on the server?
|
||||
bool _pluginsEnabled = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue