Skip to content

Commit

Permalink
Add builtin field in Appliance model
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jul 3, 2023
1 parent 785eff8 commit 9357ac6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gns3server/schemas/controller/appliances.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 9357ac6

Please sign in to comment.