diff options
author | O'Keefe, Gerard (Gerry) <gokeefe@atb.com> | 2022-07-04 10:54:51 -0700 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-07-04 10:54:51 -0700 |
commit | b5cdc097005c8a48a16e793a69c343198b14e035 (patch) | |
tree | 972c6a46ccb6effee32a96453b90beb2138ef545 /gitlab/v4/objects/groups.py | |
parent | 3df404c8165c36486bbcdf03816bd0b3173d9de8 (diff) | |
download | gitlab-b5cdc097005c8a48a16e793a69c343198b14e035.tar.gz |
feat: add support for group push rules
Add the GroupPushRules and GroupPushRulesManager classes.
Closes: #1259
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 8cb5052..84fd600 100644 --- a/gitlab/v4/objects/groups.py +++ b/gitlab/v4/objects/groups.py @@ -33,6 +33,7 @@ from .milestones import GroupMilestoneManager # noqa: F401 from .notification_settings import GroupNotificationSettingsManager # noqa: F401 from .packages import GroupPackageManager # noqa: F401 from .projects import GroupProjectManager # noqa: F401 +from .push_rules import GroupPushRulesManager from .runners import GroupRunnerManager # noqa: F401 from .statistics import GroupIssuesStatisticsManager # noqa: F401 from .variables import GroupVariableManager # noqa: F401 @@ -75,6 +76,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject): notificationsettings: GroupNotificationSettingsManager packages: GroupPackageManager projects: GroupProjectManager + pushrules: GroupPushRulesManager runners: GroupRunnerManager subgroups: "GroupSubgroupManager" variables: GroupVariableManager |