Skip to content

Commit

Permalink
Fix freezeperiods defintion in gitlab.go
Browse files Browse the repository at this point in the history
  • Loading branch information
zk-kb4 committed Jan 4, 2021
1 parent 94467af commit 4922981
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ type Client struct {
Epics *EpicsService
Events *EventsService
Features *FeaturesService
FreezePeriod *FreezePeriodsService
FreezePeriods *FreezePeriodsService
GitIgnoreTemplates *GitIgnoreTemplatesService
GroupBadges *GroupBadgesService
GroupCluster *GroupClustersService
Expand Down Expand Up @@ -281,6 +281,7 @@ func newClient(options ...ClientOptionFunc) (*Client, error) {
c.Epics = &EpicsService{client: c}
c.Events = &EventsService{client: c}
c.Features = &FeaturesService{client: c}
c.FreezePeriods = &FreezePeriodsService{client: c}
c.GitIgnoreTemplates = &GitIgnoreTemplatesService{client: c}
c.GroupBadges = &GroupBadgesService{client: c}
c.GroupCluster = &GroupClustersService{client: c}
Expand Down

0 comments on commit 4922981

Please sign in to comment.