1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #10061: Replicate type when cloning L2VPN instances

This commit is contained in:
jeremystretch
2022-08-18 15:19:34 -04:00
parent 9059c09627
commit 804c064a7e
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,10 @@
## v3.3.1 (FUTURE)
### Enhancements
* [#10061](https://github.com/netbox-community/netbox/issues/10061) - Replicate type when cloning L2VPN instances
### Bug Fixes
* [#10040](https://github.com/netbox-community/netbox/issues/10040) - Fix exception when ordering prefixes by flat representation

View File

@ -53,6 +53,8 @@ class L2VPN(NetBoxModel):
to='tenancy.ContactAssignment'
)
clone_fields = ('type',)
class Meta:
ordering = ('name', 'identifier')
verbose_name = 'L2VPN'