Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit e6a0bbf

Browse files
committed
change UseInheritedSettings from BoolValue to bool
1 parent 8401d7e commit e6a0bbf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

services.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -781,11 +781,11 @@ type HarborService struct {
781781
// GitLab API docs:
782782
// https://docs.gitlab.com/ee/api/integrations.html#harbor
783783
type HarborServiceProperties struct {
784-
URL string `json:"url"`
785-
ProjectName string `json:"project_name"`
786-
Username string `json:"username"`
787-
Password string `json:"password"`
788-
UseInheritedSettings BoolValue `json:"use_inherited_settings"`
784+
URL string `json:"url"`
785+
ProjectName string `json:"project_name"`
786+
Username string `json:"username"`
787+
Password string `json:"password"`
788+
UseInheritedSettings bool `json:"use_inherited_settings"`
789789
}
790790

791791
// GetHarborService gets Harbor service settings for a project.

0 commit comments

Comments
 (0)