summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/projects.py
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-02-28 14:45:09 +0100
committerNejc Habjan <hab.nejc@gmail.com>2021-02-28 14:45:29 +0100
commitea5d358a6b0262055b10d82d7c0e998b26bf4aaa (patch)
tree450bd2a701a00c586c1809150826c98c94936f68 /gitlab/v4/objects/projects.py
parent51b6de1c26f28778d05d5a21be6e93f0a7c97b80 (diff)
downloadgitlab-feat/generate-changelog-api.tar.gz
chore(api): turn changelog into its own managerfeat/generate-changelog-api
Diffstat (limited to 'gitlab/v4/objects/projects.py')
-rw-r--r--gitlab/v4/objects/projects.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/gitlab/v4/objects/projects.py b/gitlab/v4/objects/projects.py
index c187ba9..9f601dd 100644
--- a/gitlab/v4/objects/projects.py
+++ b/gitlab/v4/objects/projects.py
@@ -47,7 +47,11 @@ from .pipelines import (
)
from .push_rules import ProjectPushRulesManager
from .releases import ProjectReleaseManager
-from .repositories import RepositoryMixin
+from .repositories import (
+ RepositoryMixin,
+ ProjectRepositoryChangelog,
+ ProjectRepositoryChangelogManager,
+)
from .runners import ProjectRunnerManager
from .services import ProjectServiceManager
from .snippets import ProjectSnippetManager
@@ -112,6 +116,7 @@ class Project(RefreshMixin, SaveMixin, ObjectDeleteMixin, RepositoryMixin, RESTO
("boards", "ProjectBoardManager"),
("branches", "ProjectBranchManager"),
("jobs", "ProjectJobManager"),
+ ("changelogs", "ProjectRepositoryChangelogManager"),
("commits", "ProjectCommitManager"),
("customattributes", "ProjectCustomAttributeManager"),
("deployments", "ProjectDeploymentManager"),