diff options
author | Adam Reid <areid@navtech.aero> | 2016-05-06 09:44:15 -0400 |
---|---|---|
committer | Adam Reid <areid@navtech.aero> | 2016-05-06 09:44:15 -0400 |
commit | 5fe7e27bb16a06271f87bf19473b8604df92b4f7 (patch) | |
tree | d4f9c05916411f18e56f373504922ad7ca186547 | |
parent | 61bc24fd341e53718f8b9c06c3ac1bbcd55d2530 (diff) | |
download | gitlab-5fe7e27bb16a06271f87bf19473b8604df92b4f7.tar.gz |
Enable updates on ProjectIssueNotes
-rw-r--r-- | gitlab/objects.py | 2 |
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'] |