diff options
Diffstat (limited to 'gitlab/v4/objects/projects.py')
-rw-r--r-- | gitlab/v4/objects/projects.py | 7 |
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"), |