diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-23 16:16:54 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-23 16:16:54 +0200 |
commit | f332907457c897ad0483a0bffce3d01503445d0b (patch) | |
tree | d871082cc6b0fec206ea5c7a135fe4573039b1a2 /gitlab/__init__.py | |
parent | 20fdbe870f161ad7c47c7d57ebb2b6952acba8be (diff) | |
download | gitlab-f332907457c897ad0483a0bffce3d01503445d0b.tar.gz |
Add support for boards API
This is not fully usable because the gitlab API has some limitations:
- not possible to create boards programmatically
- not possible to get labels ID
(https://gitlab.com/gitlab-org/gitlab-ce/issues/23448)
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r-- | gitlab/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 2699328..56a53c9 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -82,6 +82,10 @@ class Gitlab(object): namespaces (NamespaceManager): Manager for namespaces project_accessrequests (ProjectAccessRequestManager): Manager for GitLab projects access requests + project_boards (ProjectBoardManager): Manager for GitLab projects + boards + project_board_lists (ProjectBoardListManager): Manager for GitLab + project board lists project_branches (ProjectBranchManager): Manager for GitLab projects branches project_builds (ProjectBuildManager): Manager for GitLab projects @@ -175,6 +179,8 @@ class Gitlab(object): self.licenses = LicenseManager(self) self.namespaces = NamespaceManager(self) self.project_accessrequests = ProjectAccessRequestManager(self) + self.project_boards = ProjectBoardManager(self) + self.project_board_listss = ProjectBoardListManager(self) self.project_branches = ProjectBranchManager(self) self.project_builds = ProjectBuildManager(self) self.project_commits = ProjectCommitManager(self) |