summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Reid <areid@navtech.aero>2016-05-06 09:44:15 -0400
committerAdam Reid <areid@navtech.aero>2016-05-06 09:44:15 -0400
commit5fe7e27bb16a06271f87bf19473b8604df92b4f7 (patch)
treed4f9c05916411f18e56f373504922ad7ca186547
parent61bc24fd341e53718f8b9c06c3ac1bbcd55d2530 (diff)
downloadgitlab-5fe7e27bb16a06271f87bf19473b8604df92b4f7.tar.gz
Enable updates on ProjectIssueNotes
-rw-r--r--gitlab/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 2ceb37f..9311611 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']