From 9357ac60350a1987b586ed33f3fbe6e9140e2cc0 Mon Sep 17 00:00:00 2001 From: grossmj Date: Mon, 3 Jul 2023 21:02:17 +1000 Subject: [PATCH] Add builtin field in Appliance model --- gns3server/schemas/controller/appliances.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gns3server/schemas/controller/appliances.py b/gns3server/schemas/controller/appliances.py index af816d4a..7ca46437 100644 --- a/gns3server/schemas/controller/appliances.py +++ b/gns3server/schemas/controller/appliances.py @@ -417,6 +417,7 @@ class Appliance(BaseModel): appliance_id: UUID = Field(..., title='Appliance ID') name: str = Field(..., title='Appliance name') + builtin: Optional[bool] = Field(None, title='Whether the appliance is builtin or not') category: Category = Field(..., title='Category of the appliance') description: str = Field( ..., title='Description of the appliance. Could be a marketing description'