From 9561b81a6a9e7af4da1eba6184fc0d3f99270fdd Mon Sep 17 00:00:00 2001 From: "James E. Flemer" Date: Wed, 12 Apr 2017 12:35:35 -0600 Subject: [PATCH] Support milestone start date (#251) --- gitlab/objects.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gitlab/objects.py b/gitlab/objects.py index 9c7b59bc8..e753e9f99 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -1861,7 +1861,8 @@ class ProjectMilestone(GitlabObject): requiredUrlAttrs = ['project_id'] optionalListAttrs = ['iid', 'state'] requiredCreateAttrs = ['title'] - optionalCreateAttrs = ['description', 'due_date', 'state_event'] + optionalCreateAttrs = ['description', 'due_date', 'start_date', + 'state_event'] optionalUpdateAttrs = requiredCreateAttrs + optionalCreateAttrs shortPrintAttr = 'title'