mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9 lines
256 B
Python
9 lines
256 B
Python
from django.db.models import Q
|
|
|
|
L2VPN_ASSIGNMENT_MODELS = Q(
|
|
Q(app_label='dcim', model='interface') |
|
|
Q(app_label='ipam', model='vlan') |
|
|
Q(app_label='virtualization', model='vminterface') |
|
|
Q(app_label='ipam', model='vlandevicemapping')
|
|
)
|