diff --git a/docs/release-notes/version-3.3.md b/docs/release-notes/version-3.3.md index 222ba797b..382d6c29e 100644 --- a/docs/release-notes/version-3.3.md +++ b/docs/release-notes/version-3.3.md @@ -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 diff --git a/netbox/ipam/models/l2vpn.py b/netbox/ipam/models/l2vpn.py index 3c08b5f48..0e948b18e 100644 --- a/netbox/ipam/models/l2vpn.py +++ b/netbox/ipam/models/l2vpn.py @@ -53,6 +53,8 @@ class L2VPN(NetBoxModel): to='tenancy.ContactAssignment' ) + clone_fields = ('type',) + class Meta: ordering = ('name', 'identifier') verbose_name = 'L2VPN'