summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRaimund Hook <raimund.hook@exfo.com>2021-10-27 11:52:37 +0100
committerRaimund Hook <raimund.hook@exfo.com>2021-10-27 11:52:37 +0100
commitf0685209f88d1199873c1f27d27f478706908fd3 (patch)
tree5006e9b5a2b108dc86aa47190ad3f1a596ec6c08 /docs
parent0b53c0a260ab2ec2c5ddb12ca08bfd21a24f7a69 (diff)
downloadgitlab-f0685209f88d1199873c1f27d27f478706908fd3.tar.gz
feat(api): add project milestone promotion
Adds promotion to Project Milestones Signed-off-by: Raimund Hook <raimund.hook@exfo.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/gl_objects/milestones.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/gl_objects/milestones.rst b/docs/gl_objects/milestones.rst
index 3830f81..c6b4447 100644
--- a/docs/gl_objects/milestones.rst
+++ b/docs/gl_objects/milestones.rst
@@ -66,6 +66,10 @@ Change the state of a milestone (activate / close)::
milestone.state_event = 'activate'
milestone.save()
+Promote a project milestone::
+
+ milestone.promote()
+
List the issues related to a milestone::
issues = milestone.issues()