mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 10:16:42 -06:00
Closes #10061: Replicate type when cloning L2VPN instances
This commit is contained in:
parent
9059c09627
commit
804c064a7e
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## v3.3.1 (FUTURE)
|
## v3.3.1 (FUTURE)
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
* [#10061](https://github.com/netbox-community/netbox/issues/10061) - Replicate type when cloning L2VPN instances
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#10040](https://github.com/netbox-community/netbox/issues/10040) - Fix exception when ordering prefixes by flat representation
|
* [#10040](https://github.com/netbox-community/netbox/issues/10040) - Fix exception when ordering prefixes by flat representation
|
||||||
|
@ -53,6 +53,8 @@ class L2VPN(NetBoxModel):
|
|||||||
to='tenancy.ContactAssignment'
|
to='tenancy.ContactAssignment'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
clone_fields = ('type',)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
ordering = ('name', 'identifier')
|
ordering = ('name', 'identifier')
|
||||||
verbose_name = 'L2VPN'
|
verbose_name = 'L2VPN'
|
||||||
|
Loading…
Reference in New Issue
Block a user