mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
remove the second port serialiser
This commit is contained in:
parent
d124203273
commit
acca782cdb
1 changed files with 0 additions and 28 deletions
|
@ -299,31 +299,3 @@ class PortsSerializer(NamespacedHMSerializer):
|
|||
class Meta:
|
||||
model = topologie.Port
|
||||
fields = ("state", "port", "pretty_name", "get_port_profile")
|
||||
|
||||
|
||||
class SwitchPortSerializer(serializers.ModelSerializer):
|
||||
"""Serialize the data about the switches"""
|
||||
|
||||
ports = PortsSerializer(many=True, read_only=True)
|
||||
model = ModelSwitchSerializer(read_only=True)
|
||||
switchbay = SwitchBaySerializer(read_only=True)
|
||||
|
||||
class Meta:
|
||||
model = topologie.Switch
|
||||
fields = (
|
||||
"short_name",
|
||||
"model",
|
||||
"switchbay",
|
||||
"ports",
|
||||
"ipv4",
|
||||
"ipv6",
|
||||
"interfaces_subnet",
|
||||
"interfaces6_subnet",
|
||||
"automatic_provision",
|
||||
"rest_enabled",
|
||||
"web_management_enabled",
|
||||
"get_radius_key_value",
|
||||
"get_management_cred_value",
|
||||
"get_radius_servers",
|
||||
"list_modules",
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue