summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r--gitlab/objects.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 9648e26..41931ab 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -1448,10 +1448,10 @@ class ProjectIssue(GitlabObject):
requiredUrlAttrs = ['project_id']
requiredCreateAttrs = ['title']
optionalCreateAttrs = ['description', 'assignee_id', 'milestone_id',
- 'labels', 'created_at']
+ 'labels', 'created_at', 'due_date']
optionalUpdateAttrs = ['title', 'description', 'assignee_id',
'milestone_id', 'labels', 'created_at',
- 'updated_at', 'state_event']
+ 'updated_at', 'state_event', 'due_date']
shortPrintAttr = 'title'
managers = (
('notes', ProjectIssueNoteManager,