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/v4/objects/groups.py | |
| parent | 1b70580020825adf2d1f8c37803bc4655a97be41 (diff) | |
| download | gitlab-f731707f076264ebea65afc814e4aca798970953.tar.gz | |
feat(objects): support all issues statistics endpoints
Diffstat (limited to 'gitlab/v4/objects/groups.py')
| -rw-r--r-- | gitlab/v4/objects/groups.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py index 860a056..6a569ca 100644 --- a/gitlab/v4/objects/groups.py +++ b/gitlab/v4/objects/groups.py @@ -26,6 +26,7 @@ from .notification_settings import GroupNotificationSettingsManager # noqa: F40 from .packages import GroupPackageManager # noqa: F401 from .projects import GroupProjectManager # noqa: F401 from .runners import GroupRunnerManager # noqa: F401 +from .statistics import GroupIssuesStatisticsManager # noqa: F401 from .variables import GroupVariableManager # noqa: F401 __all__ = [ @@ -52,6 +53,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject): ("epics", "GroupEpicManager"), ("imports", "GroupImportManager"), ("issues", "GroupIssueManager"), + ("issuesstatistics", "GroupIssuesStatisticsManager"), ("labels", "GroupLabelManager"), ("members", "GroupMemberManager"), ("members_all", "GroupMemberAllManager"), |
