Structural categories (#220)

* Add support for editing "structural" tree field

- Requires API v83 or newer

* Update release notes
This commit is contained in:
Oliver 2022-11-28 20:18:57 +11:00 committed by GitHub
parent 30ea893023
commit d122a352a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 29 additions and 6 deletions

View file

@ -259,6 +259,9 @@ class InvenTreeAPI {
// Notification support requires API v25 or newer
bool get supportsNotifications => isConnected() && apiVersion >= 25;
// Structural categories requires API v83 or newer
bool get supportsStructuralCategories => isConnected() && apiVersion >= 83;
// Are plugins enabled on the server?
bool _pluginsEnabled = false;