mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #10036: Set clone_fields on L2VPNTermination
This commit is contained in:
@ -8,6 +8,11 @@ from ipam.choices import L2VPNTypeChoices
|
||||
from ipam.constants import L2VPN_ASSIGNMENT_MODELS
|
||||
from netbox.models import NetBoxModel
|
||||
|
||||
__all__ = (
|
||||
'L2VPN',
|
||||
'L2VPNTermination',
|
||||
)
|
||||
|
||||
|
||||
class L2VPN(NetBoxModel):
|
||||
name = models.CharField(
|
||||
@ -79,6 +84,8 @@ class L2VPNTermination(NetBoxModel):
|
||||
fk_field='assigned_object_id'
|
||||
)
|
||||
|
||||
clone_fields = ('l2vpn',)
|
||||
|
||||
class Meta:
|
||||
ordering = ('l2vpn',)
|
||||
verbose_name = 'L2VPN termination'
|
||||
|
Reference in New Issue
Block a user