Fixes #11047: Cloning a rack reservation should replicate rack & user

This commit is contained in:
jeremystretch 2022-11-30 15:37:50 -05:00
parent 00d72f18cf
commit 281934cf34
2 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,9 @@
* [#10969](https://github.com/netbox-community/netbox/issues/10969) - Update cable paths ending at associated rear port when creating new front ports * [#10969](https://github.com/netbox-community/netbox/issues/10969) - Update cable paths ending at associated rear port when creating new front ports
* [#10996](https://github.com/netbox-community/netbox/issues/10996) - Hide checkboxes on child object lists when no bulk operations are available * [#10996](https://github.com/netbox-community/netbox/issues/10996) - Hide checkboxes on child object lists when no bulk operations are available
* [#10997](https://github.com/netbox-community/netbox/issues/10997) - Fix exception when editing NAT IP for VM with no cluster * [#10997](https://github.com/netbox-community/netbox/issues/10997) - Fix exception when editing NAT IP for VM with no cluster
* [#11014](https://github.com/netbox-community/netbox/issues/11014) - Use natural ordering when sorting rack elevations by name
* [#11028](https://github.com/netbox-community/netbox/issues/11028) - Enable bulk clearing of color attribute of pass-through ports
* [#11047](https://github.com/netbox-community/netbox/issues/11047) - Cloning a rack reservation should replicate rack & user
--- ---

View File

@ -477,6 +477,8 @@ class RackReservation(NetBoxModel):
max_length=200 max_length=200
) )
clone_fields = ('rack', 'user', 'tenant')
class Meta: class Meta:
ordering = ['created', 'pk'] ordering = ['created', 'pk']