From 9de61fe1a8e46ef91d65b579ff9a7afca730b179 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Fri, 21 Nov 2025 17:11:59 -0600 Subject: [PATCH] Update app registry for new `filtersets` store --- docs/development/application-registry.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/development/application-registry.md b/docs/development/application-registry.md index 8d36ccf96..9503f8ff0 100644 --- a/docs/development/application-registry.md +++ b/docs/development/application-registry.md @@ -20,6 +20,10 @@ A dictionary mapping data backend types to their respective classes. These are u Stores registration made using `netbox.denormalized.register()`. For each model, a list of related models and their field mappings is maintained to facilitate automatic updates. +### `filtersets` + +A dictionary mapping each model (identified by its app and label) to its filterset class, if one has been registered for it. Filtersets are registered using the `@register_filterset` decorator. + ### `model_features` A dictionary of model features (e.g. custom fields, tags, etc.) mapped to the functions used to qualify a model as supporting each feature. Model features are registered using the `register_model_feature()` function in `netbox.utils`.