From 5fe7e27bb16a06271f87bf19473b8604df92b4f7 Mon Sep 17 00:00:00 2001 From: Adam Reid Date: Fri, 6 May 2016 09:44:15 -0400 Subject: Enable updates on ProjectIssueNotes --- gitlab/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gitlab/objects.py') 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'] -- cgit v1.2.1 From 111b7d9a4ee60176714b950d7ed9da86c6051feb Mon Sep 17 00:00:00 2001 From: Adam Reid Date: Mon, 9 May 2016 14:25:28 -0400 Subject: Remove unnecessary canUpdate property from ProjectIssuesNote --- gitlab/objects.py | 1 - 1 file changed, 1 deletion(-) (limited to 'gitlab/objects.py') diff --git a/gitlab/objects.py b/gitlab/objects.py index 9311611..6924341 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -935,7 +935,6 @@ class ProjectHookManager(BaseManager): class ProjectIssueNote(GitlabObject): _url = '/projects/%(project_id)s/issues/%(issue_id)s/notes' _constructorTypes = {'author': 'User'} - canUpdate = True canDelete = False requiredUrlAttrs = ['project_id', 'issue_id'] requiredCreateAttrs = ['body'] -- cgit v1.2.1