diff --git a/docs/configuration/miscellaneous.md b/docs/configuration/miscellaneous.md index 7099271be..b983acd80 100644 --- a/docs/configuration/miscellaneous.md +++ b/docs/configuration/miscellaneous.md @@ -109,7 +109,7 @@ By default, NetBox will prevent the creation of duplicate prefixes and IP addres ## EVENTS_PIPELINE -Default: ['extras.events.process_event_queue',] +Default: `['extras.events.process_event_queue',]` NetBox will call dotted paths to the functions listed here for events (create, update, delete) on models as well as when custom EventRules are fired. diff --git a/docs/plugins/development/index.md b/docs/plugins/development/index.md index a5384a2b5..8a83ab71b 100644 --- a/docs/plugins/development/index.md +++ b/docs/plugins/development/index.md @@ -114,7 +114,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 | -| `events_pipeline` | An optional list of dotted paths to add to the [`EVENTS_PIPELINE`](./miscellaneous.md#events_pipeline) | +| `events_pipeline` | A list of handlers to add to [`EVENTS_PIPELINE`](./miscellaneous.md#events_pipeline), identified by dotted paths | | `search_extensions` | The dotted path to the list of search index classes (default: `search.indexes`) | | `data_backends` | The dotted path to the list of data source backend classes (default: `data_backends.backends`) | | `template_extensions` | The dotted path to the list of template extension classes (default: `template_content.template_extensions`) |