diff options
Diffstat (limited to 'gitlab/v4/objects/award_emojis.py')
-rw-r--r-- | gitlab/v4/objects/award_emojis.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gitlab/v4/objects/award_emojis.py b/gitlab/v4/objects/award_emojis.py index fe87109..43efa2c 100644 --- a/gitlab/v4/objects/award_emojis.py +++ b/gitlab/v4/objects/award_emojis.py @@ -2,6 +2,22 @@ from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "ProjectIssueAwardEmoji", + "ProjectIssueAwardEmojiManager", + "ProjectIssueNoteAwardEmoji", + "ProjectIssueNoteAwardEmojiManager", + "ProjectMergeRequestAwardEmoji", + "ProjectMergeRequestAwardEmojiManager", + "ProjectMergeRequestNoteAwardEmoji", + "ProjectMergeRequestNoteAwardEmojiManager", + "ProjectSnippetAwardEmoji", + "ProjectSnippetAwardEmojiManager", + "ProjectSnippetNoteAwardEmoji", + "ProjectSnippetNoteAwardEmojiManager", +] + + class ProjectIssueAwardEmoji(ObjectDeleteMixin, RESTObject): pass |