diff options
author | John Gunnison <jgunnison@sibros.tech> | 2022-07-19 16:32:33 -0500 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-07-19 16:45:52 -0700 |
commit | 5fc3216788342a2325662644b42e8c249b655ded (patch) | |
tree | 4a288ee79cab8d4dde142e21f84fa224d87d80aa /gitlab/v4/objects | |
parent | ed110bd131fd330e20ec55915b9452dbf8002e0b (diff) | |
download | gitlab-5fc3216788342a2325662644b42e8c249b655ded.tar.gz |
fix: Enable epic notes
Add the notes attribute to GroupEpic
Diffstat (limited to 'gitlab/v4/objects')
-rw-r--r-- | gitlab/v4/objects/epics.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/objects/epics.py b/gitlab/v4/objects/epics.py index c92420c..f10ea19 100644 --- a/gitlab/v4/objects/epics.py +++ b/gitlab/v4/objects/epics.py @@ -15,6 +15,7 @@ from gitlab.mixins import ( from gitlab.types import RequiredOptional from .events import GroupEpicResourceLabelEventManager # noqa: F401 +from .notes import GroupEpicNoteManager # noqa: F401 __all__ = [ "GroupEpic", @@ -29,6 +30,7 @@ class GroupEpic(ObjectDeleteMixin, SaveMixin, RESTObject): issues: "GroupEpicIssueManager" resourcelabelevents: GroupEpicResourceLabelEventManager + notes: GroupEpicNoteManager class GroupEpicManager(CRUDMixin, RESTManager): |