From a37e86d0f7b41b821555e336392885b88236a091 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Mon, 10 Oct 2022 13:48:28 -0400 Subject: [PATCH] Docs for #8927 --- docs/plugins/development/index.md | 1 + docs/release-notes/version-3.4.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/plugins/development/index.md b/docs/plugins/development/index.md index b7b03b5bf..cad77c7fe 100644 --- a/docs/plugins/development/index.md +++ b/docs/plugins/development/index.md @@ -108,6 +108,7 @@ NetBox looks for the `config` variable within a plugin's `__init__.py` to load i | `max_version` | Maximum version of NetBox with which the plugin is compatible | | `middleware` | A list of middleware classes to append after NetBox's build-in middleware | | `queues` | A list of custom background task queues to create | +| `search_extensions` | The dotted path to the list of search index classes (default: `search.indexes`) | | `template_extensions` | The dotted path to the list of template extension classes (default: `template_content.template_extensions`) | | `menu_items` | The dotted path to the list of menu items provided by the plugin (default: `navigation.menu_items`) | | `graphql_schema` | The dotted path to the plugin's GraphQL schema class, if any (default: `graphql.schema`) | diff --git a/docs/release-notes/version-3.4.md b/docs/release-notes/version-3.4.md index bbb386577..6a47c7a2b 100644 --- a/docs/release-notes/version-3.4.md +++ b/docs/release-notes/version-3.4.md @@ -26,6 +26,7 @@ A new `PluginMenu` class has been introduced, which enables a plugin to inject a ### Plugins API +* [#8927](https://github.com/netbox-community/netbox/issues/8927) - Enable inclusion of plugin models in global search via `SearchIndex` * [#9071](https://github.com/netbox-community/netbox/issues/9071) - Introduce `PluginMenu` for top-level plugin navigation menus * [#9072](https://github.com/netbox-community/netbox/issues/9072) - Enable registration of tabbed plugin views for core NetBox models * [#9880](https://github.com/netbox-community/netbox/issues/9880) - Introduce `django_apps` plugin configuration parameter