summaryrefslogtreecommitdiff
path: root/gitlab/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r--gitlab/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index a8e0fe6..836aaea 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -73,6 +73,7 @@ class Gitlab(object):
hooks (HookManager): Manager for GitLab hooks
issues (IssueManager): Manager for GitLab issues
licenses (LicenseManager): Manager for licenses
+ namespaces (NamespaceManager): Manager for namespaces
project_branches (ProjectBranchManager): Manager for GitLab projects
branches
project_commits (ProjectCommitManager): Manager for GitLab projects
@@ -143,6 +144,7 @@ class Gitlab(object):
self.hooks = HookManager(self)
self.issues = IssueManager(self)
self.licenses = LicenseManager(self)
+ self.namespaces = NamespaceManager(self)
self.project_branches = ProjectBranchManager(self)
self.project_commits = ProjectCommitManager(self)
self.project_commit_comments = ProjectCommitCommentManager(self)