diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-05-27 00:44:46 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2021-05-30 08:50:09 -0700 |
commit | f731707f076264ebea65afc814e4aca798970953 (patch) | |
tree | 31c5d4a939ca9bf40582a344725284e0a846fd34 /gitlab/client.py | |
parent | 1b70580020825adf2d1f8c37803bc4655a97be41 (diff) | |
download | gitlab-f731707f076264ebea65afc814e4aca798970953.tar.gz |
feat(objects): support all issues statistics endpoints
Diffstat (limited to 'gitlab/client.py')
-rw-r--r-- | gitlab/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/client.py b/gitlab/client.py index fa9a394..fe018af 100644 --- a/gitlab/client.py +++ b/gitlab/client.py @@ -118,6 +118,7 @@ class Gitlab(object): self.groups = objects.GroupManager(self) self.hooks = objects.HookManager(self) self.issues = objects.IssueManager(self) + self.issuesstatistics = objects.IssuesStatisticsManager(self) self.ldapgroups = objects.LDAPGroupManager(self) self.licenses = objects.LicenseManager(self) self.namespaces = objects.NamespaceManager(self) |