summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/discussions.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/discussions.py')
-rw-r--r--gitlab/v4/objects/discussions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gitlab/v4/objects/discussions.py b/gitlab/v4/objects/discussions.py
index f91d8fb..19d1a06 100644
--- a/gitlab/v4/objects/discussions.py
+++ b/gitlab/v4/objects/discussions.py
@@ -21,6 +21,7 @@ __all__ = [
class ProjectCommitDiscussion(RESTObject):
+ notes: ProjectCommitDiscussionNoteManager
_managers = (("notes", "ProjectCommitDiscussionNoteManager"),)
@@ -32,6 +33,7 @@ class ProjectCommitDiscussionManager(RetrieveMixin, CreateMixin, RESTManager):
class ProjectIssueDiscussion(RESTObject):
+ notes: ProjectIssueDiscussionNoteManager
_managers = (("notes", "ProjectIssueDiscussionNoteManager"),)
@@ -43,6 +45,7 @@ class ProjectIssueDiscussionManager(RetrieveMixin, CreateMixin, RESTManager):
class ProjectMergeRequestDiscussion(SaveMixin, RESTObject):
+ notes: ProjectMergeRequestDiscussionNoteManager
_managers = (("notes", "ProjectMergeRequestDiscussionNoteManager"),)
@@ -59,6 +62,7 @@ class ProjectMergeRequestDiscussionManager(
class ProjectSnippetDiscussion(RESTObject):
+ notes: ProjectSnippetDiscussionNoteManager
_managers = (("notes", "ProjectSnippetDiscussionNoteManager"),)