Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
fix(go-utils): Make AutomaticProvisioning parameter required in metad…
Browse files Browse the repository at this point in the history
…ata model (#435)

Signed-off-by: odubajDT <[email protected]>
  • Loading branch information
odubajDT authored Apr 4, 2022
1 parent 297c1b2 commit 0b73d75
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/api/models/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import "encoding/json"
type Metadata struct {

// automaticprovisioning
Automaticprovisioning bool `json:"automaticprovisioning,omitempty"`
// Required: true
Automaticprovisioning *bool `json:"automaticprovisioning"`

// bridgeversion
Bridgeversion string `json:"bridgeversion,omitempty"`
Expand Down

0 comments on commit 0b73d75

Please sign in to comment.