Skip to content

Commit

Permalink
fix missing omitempty on SetHarborServiceOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
houstonj1 committed Oct 10, 2024
1 parent ce294e8 commit 66f30b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services.go
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ type SetHarborServiceOptions struct {
ProjectName *string `url:"project_name,omitempty" json:"project_name,omitempty"`
Username *string `url:"username,omitempty" json:"username,omitempty"`
Password *string `url:"password,omitempty" json:"password,omitempty"`
UseInheritedSettings *bool `url:"use_inherited_settings" json:"use_inherited_settings"`
UseInheritedSettings *bool `url:"use_inherited_settings,omitempty" json:"use_inherited_settings,omitempty"`
}

// SetHarborService sets Harbor service for a project.
Expand Down

0 comments on commit 66f30b3

Please sign in to comment.