diff --git a/docs/plugins/development/models.md b/docs/plugins/development/models.md index 519095314..2582fd4bf 100644 --- a/docs/plugins/development/models.md +++ b/docs/plugins/development/models.md @@ -124,7 +124,7 @@ For more information about database migrations, see the [Django documentation](h ## Custom Model Features -In addition to utilizing the model features provided natively by NetBox (listed above), plugins can register their own model features. This is done using the `register_model_feature()` function from `netbox.models.features`. This function takes two arguments: a feature name, and a callable which accepts a model class. The callable must return a boolean value indicting whether the given model supports the named feature. +In addition to utilizing the model features provided natively by NetBox (listed above), plugins can register their own model features. This is done using the `register_model_feature()` function from `netbox.utils`. This function takes two arguments: a feature name, and a callable which accepts a model class. The callable must return a boolean value indicting whether the given model supports the named feature. This function can be used as a decorator: