mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-26 16:58:28 +00:00
Make port name for custom adapters optional. Fixes https://github.com/GNS3/gns3-web-ui/issues/1430
This commit is contained in:
parent
ab1f9a4385
commit
9c158848bd
@ -43,7 +43,7 @@ class CustomAdapter(BaseModel):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
adapter_number: int
|
adapter_number: int
|
||||||
port_name: str
|
port_name: Optional[str] = None
|
||||||
adapter_type: Optional[str] = None
|
adapter_type: Optional[str] = None
|
||||||
mac_address: Optional[str] = Field(None, regex="^([0-9a-fA-F]{2}[:]){5}([0-9a-fA-F]{2})$")
|
mac_address: Optional[str] = Field(None, regex="^([0-9a-fA-F]{2}[:]){5}([0-9a-fA-F]{2})$")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user