diff options
| author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-07-16 16:01:58 +0200 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-07-16 16:01:58 +0200 |
| commit | 0be4761961cf145cf66a456d910596aa32912492 (patch) | |
| tree | 4a1f7e1f0c0fa54d817cfcc64d82ceeec4771da2 /gitlab/__init__.py | |
| parent | 6f9f42b64cb82929af60e299c70773af6d406a6e (diff) | |
| download | gitlab-0be4761961cf145cf66a456d910596aa32912492.tar.gz | |
Implement user emails support
Diffstat (limited to 'gitlab/__init__.py')
| -rw-r--r-- | gitlab/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 836aaea..3ef5dff 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -65,6 +65,7 @@ class Gitlab(object): http_username: (str): Username for HTTP authentication http_password: (str): Password for HTTP authentication Attributes: + user_emails (UserEmailManager): Manager for GitLab users' emails. user_keys (UserKeyManager): Manager for GitLab users' SSH keys. users (UserManager): Manager for GitLab users group_projects (GroupProjectManager): Manager for GitLab group projects @@ -136,6 +137,7 @@ class Gitlab(object): self.session = requests.Session() self.settings = ApplicationSettingsManager(self) + self.user_emails = UserEmailManager(self) self.user_keys = UserKeyManager(self) self.users = UserManager(self) self.group_projects = GroupProjectManager(self) |
