diff options
author | Michael Muré <batolettre@gmail.com> | 2019-11-03 13:29:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-03 13:29:29 +0000 |
commit | 16bd116971bb7abc7308e95c474b433512672432 (patch) | |
tree | 9ff0abe956baed511f47b456f94863fec2e08cf3 /vendor/github.com/xanzy/go-gitlab/milestones.go | |
parent | 8c7c9880b1adcf876ad63ea39e46e62bd7ebde5d (diff) | |
parent | 4666763d4dfc5623ee2b2423a759de50aad151b7 (diff) | |
download | git-bug-16bd116971bb7abc7308e95c474b433512672432.tar.gz |
Merge pull request #234 from MichaelMure/dependabot/dep/github.com/xanzy/go-gitlab-0.21.0
build(deps): bump github.com/xanzy/go-gitlab from 0.20.0 to 0.21.0
Diffstat (limited to 'vendor/github.com/xanzy/go-gitlab/milestones.go')
-rw-r--r-- | vendor/github.com/xanzy/go-gitlab/milestones.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vendor/github.com/xanzy/go-gitlab/milestones.go b/vendor/github.com/xanzy/go-gitlab/milestones.go index e96b3446..f3f7f7c8 100644 --- a/vendor/github.com/xanzy/go-gitlab/milestones.go +++ b/vendor/github.com/xanzy/go-gitlab/milestones.go @@ -55,9 +55,10 @@ func (m Milestone) String() string { // https://docs.gitlab.com/ce/api/milestones.html#list-project-milestones type ListMilestonesOptions struct { ListOptions - IIDs []int `url:"iids,omitempty" json:"iids,omitempty"` - State string `url:"state,omitempty" json:"state,omitempty"` - Search string `url:"search,omitempty" json:"search,omitempty"` + IIDs []int `url:"iids,omitempty" json:"iids,omitempty"` + Title *string `url:"title,omitempty" json:"title,omitempty"` + State *string `url:"state,omitempty" json:"state,omitempty"` + Search *string `url:"search,omitempty" json:"search,omitempty"` } // ListMilestones returns a list of project milestones. |