From 5fe7e27bb16a06271f87bf19473b8604df92b4f7 Mon Sep 17 00:00:00 2001 From: Adam Reid Date: Fri, 6 May 2016 09:44:15 -0400 Subject: [PATCH] Enable updates on ProjectIssueNotes --- gitlab/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/objects.py b/gitlab/objects.py index 2ceb37f71..931161181 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -935,7 +935,7 @@ class ProjectHookManager(BaseManager): class ProjectIssueNote(GitlabObject): _url = '/projects/%(project_id)s/issues/%(issue_id)s/notes' _constructorTypes = {'author': 'User'} - canUpdate = False + canUpdate = True canDelete = False requiredUrlAttrs = ['project_id', 'issue_id'] requiredCreateAttrs = ['body']