diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-03-07 18:06:17 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-04-18 14:24:14 +0200 |
commit | d4799c40bd12ed85d4bb834464fdb36c4dadcab6 (patch) | |
tree | 734adffee8de4ee060296a901a70f986a42dd742 /gitlab/v4/objects/issues.py | |
parent | 10225cf26095efe82713136ddde3330e7afc6d10 (diff) | |
download | gitlab-d4799c40bd12ed85d4bb834464fdb36c4dadcab6.tar.gz |
feat(objects): add support for resource state events API
Diffstat (limited to 'gitlab/v4/objects/issues.py')
-rw-r--r-- | gitlab/v4/objects/issues.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/objects/issues.py b/gitlab/v4/objects/issues.py index 4da7f91..9d38d72 100644 --- a/gitlab/v4/objects/issues.py +++ b/gitlab/v4/objects/issues.py @@ -20,6 +20,7 @@ from .discussions import ProjectIssueDiscussionManager from .events import ( ProjectIssueResourceLabelEventManager, ProjectIssueResourceMilestoneEventManager, + ProjectIssueResourceStateEventManager, ) from .notes import ProjectIssueNoteManager @@ -110,6 +111,7 @@ class ProjectIssue( ("notes", "ProjectIssueNoteManager"), ("resourcelabelevents", "ProjectIssueResourceLabelEventManager"), ("resourcemilestoneevents", "ProjectIssueResourceMilestoneEventManager"), + ("resourcestateevents", "ProjectIssueResourceStateEventManager"), ) @cli.register_custom_action("ProjectIssue", ("to_project_id",)) |