Closes #21887: Deprecate support for legacy view actions (#21889)

This commit is contained in:
Jeremy Stretch
2026-04-10 18:55:27 -04:00
committed by GitHub
parent 71d918636c
commit cb5ade07f0

View File

@@ -9,7 +9,7 @@ __all__ = (
'TableMixin',
)
# TODO: Remove in NetBox v4.5
# TODO: Remove in NetBox v4.7
LEGACY_ACTIONS = {
'add': object_actions.AddObject,
'edit': object_actions.EditObject,
@@ -33,7 +33,7 @@ class ActionsMixin:
"""
actions = tuple()
# TODO: Remove in NetBox v4.5
# TODO: Remove in NetBox v4.7
def _convert_legacy_actions(self):
"""
Convert a legacy dictionary mapping action name to required permissions to a list of ObjectAction subclasses.
@@ -41,6 +41,14 @@ class ActionsMixin:
if type(self.actions) is not dict:
return
import warnings
warnings.warn(
f"{self.__class__.__name__}.actions is defined as a dictionary, which is deprecated and will be removed "
"in NetBox v4.7. Define actions as a list of ObjectAction subclasses instead.",
DeprecationWarning,
stacklevel=2,
)
actions = []
for name in self.actions.keys():
try:
@@ -56,7 +64,7 @@ class ActionsMixin:
"""
model = model or self.queryset.model
# TODO: Remove in NetBox v4.5
# TODO: Remove in NetBox v4.7
# Handle legacy action sets
self._convert_legacy_actions()