Closes #8168: Add min/max VID fields to VLANGroup

This commit is contained in:
jeremystretch
2021-12-23 11:13:28 -05:00
parent 282106e49c
commit 620fc25d8c
14 changed files with 148 additions and 31 deletions

View File

@@ -182,8 +182,8 @@ class VLANGroupSerializer(PrimaryModelSerializer):
class Meta:
model = VLANGroup
fields = [
'id', 'url', 'display', 'name', 'slug', 'scope_type', 'scope_id', 'scope', 'description', 'tags',
'custom_fields', 'created', 'last_updated', 'vlan_count',
'id', 'url', 'display', 'name', 'slug', 'scope_type', 'scope_id', 'scope', 'min_vid', 'max_vid',
'description', 'tags', 'custom_fields', 'created', 'last_updated', 'vlan_count',
]
validators = []