diff options
author | Greg Allen <GregoryEAllen@users.noreply.github.com> | 2016-11-09 16:52:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-09 16:52:46 -0600 |
commit | 5b2412217481b6ddf654277e0748585135a4fe64 (patch) | |
tree | e6bdd88ffffff3c141aa73d6bdd4797e85534ca6 /gitlab/objects.py | |
parent | 570e75d5548daa971ff570a634dec0767e3ba6c0 (diff) | |
download | gitlab-5b2412217481b6ddf654277e0748585135a4fe64.tar.gz |
Add attr 'created_at' to ProjectIssueNote
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r-- | gitlab/objects.py | 1 |
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): |