summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/notes.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/notes.py')
-rw-r--r--gitlab/v4/objects/notes.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/gitlab/v4/objects/notes.py b/gitlab/v4/objects/notes.py
index 4cd1f25..23c7fa8 100644
--- a/gitlab/v4/objects/notes.py
+++ b/gitlab/v4/objects/notes.py
@@ -9,6 +9,26 @@ from .award_emojis import (
)
+__all__ = [
+ "ProjectNote",
+ "ProjectNoteManager",
+ "ProjectCommitDiscussionNote",
+ "ProjectCommitDiscussionNoteManager",
+ "ProjectIssueNote",
+ "ProjectIssueNoteManager",
+ "ProjectIssueDiscussionNote",
+ "ProjectIssueDiscussionNoteManager",
+ "ProjectMergeRequestNote",
+ "ProjectMergeRequestNoteManager",
+ "ProjectMergeRequestDiscussionNote",
+ "ProjectMergeRequestDiscussionNoteManager",
+ "ProjectSnippetNote",
+ "ProjectSnippetNoteManager",
+ "ProjectSnippetDiscussionNote",
+ "ProjectSnippetDiscussionNoteManager",
+]
+
+
class ProjectNote(RESTObject):
pass