summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
diff options
context:
space:
mode:
authorGreg Allen <GregoryEAllen@users.noreply.github.com>2016-11-09 16:57:48 -0600
committerGitHub <noreply@github.com>2016-11-09 16:57:48 -0600
commit14e7ccd10f04b2aa5b986580bca52f9361af4858 (patch)
treee6bdd88ffffff3c141aa73d6bdd4797e85534ca6 /gitlab/objects.py
parent570e75d5548daa971ff570a634dec0767e3ba6c0 (diff)
parent5b2412217481b6ddf654277e0748585135a4fe64 (diff)
downloadgitlab-14e7ccd10f04b2aa5b986580bca52f9361af4858.tar.gz
Merge pull request #1 from GregoryEAllen/GregoryEAllen-patch-1
Add attr 'created_at' to ProjectIssueNote
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r--gitlab/objects.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 5166b08..2391439 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -1376,6 +1376,7 @@ class ProjectIssueNote(GitlabObject):
canDelete = False
requiredUrlAttrs = ['project_id', 'issue_id']
requiredCreateAttrs = ['body']
+ optionalCreateAttrs = ['created_at']
class ProjectIssueNoteManager(BaseManager):