diff options
-rw-r--r-- | gitlab/objects.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py index 9c7b59b..e753e9f 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' |