From 487550d487624119d84a3e17a1b473a2e8b2ae10 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 12 Feb 2026 15:09:59 -0800 Subject: [PATCH] 21277 call snapshot in ClusterAddDevicesView to correctly record ObjectChange data --- netbox/virtualization/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/virtualization/views.py b/netbox/virtualization/views.py index 6def3f5a1..09bfdf61a 100644 --- a/netbox/virtualization/views.py +++ b/netbox/virtualization/views.py @@ -320,6 +320,7 @@ class ClusterAddDevicesView(generic.ObjectEditView): # Assign the selected Devices to the Cluster for device in Device.objects.filter(pk__in=device_pks): + device.snapshot() device.cluster = cluster device.save()