diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-23 21:46:28 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-23 21:46:28 +0200 |
commit | b15f17b6d2008ee658cf9206aa37faaf966a521b (patch) | |
tree | 0ea09ee088d28770c7bc6d0e34382ca1cb142a9f /gitlab/__init__.py | |
parent | 6d3450c4fe4a2e592b9000be309819278f519e11 (diff) | |
download | gitlab-b15f17b6d2008ee658cf9206aa37faaf966a521b.tar.gz |
Add support for the notification settings API
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r-- | gitlab/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index a022cb4..14b642d 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -82,6 +82,8 @@ class Gitlab(object): issues (IssueManager): Manager for GitLab issues licenses (LicenseManager): Manager for licenses namespaces (NamespaceManager): Manager for namespaces + notificationsettings (NotificationSettingsManager): Manager for global + notification settings project_accessrequests (ProjectAccessRequestManager): Manager for GitLab projects access requests project_boards (ProjectBoardManager): Manager for GitLab projects @@ -181,6 +183,7 @@ class Gitlab(object): self.issues = IssueManager(self) self.licenses = LicenseManager(self) self.namespaces = NamespaceManager(self) + self.notificationsettings = NotificationSettingsManager(self) self.project_accessrequests = ProjectAccessRequestManager(self) self.project_boards = ProjectBoardManager(self) self.project_board_listss = ProjectBoardListManager(self) |