Skip to content

Commit

Permalink
Merge pull request xanzy#1626 from linkdotnet/group-registry-object
Browse files Browse the repository at this point in the history
fix: Only use ListOptions
  • Loading branch information
svanharmelen authored Jan 13, 2023
2 parents 3bbc1ac + 652d1a1 commit 4e02b74
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion container_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ func (s RegistryRepositoryTag) String() string {
// https://docs.gitlab.com/ee/api/container_registry.html#list-registry-repositories
type ListRegistryRepositoriesOptions struct {
ListOptions
Tags *bool `url:"tags,omitempty" json:"tags,omitempty"`
// Deprecated: This option is deprecated only for ListGroupRegistryRepositories calls. (Removed in GitLab 15.0)
Tags *bool `url:"tags,omitempty" json:"tags,omitempty"`
// Deprecated: This option is deprecated only for ListGroupRegistryRepositories calls. (Removed in GitLab 15.0)
TagsCount *bool `url:"tags_count,omitempty" json:"tags_count,omitempty"`
}

Expand Down

0 comments on commit 4e02b74

Please sign in to comment.