diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2017-11-08 17:28:01 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2017-11-08 17:28:01 +0000 |
commit | fec66bf7a163e14980f11d2f0370ce9c3630862b (patch) | |
tree | e18e397b62cc45f479f2b5aae2cbd63f1df6c185 /doc | |
parent | ce06415cb6af38b5dab88d1babfe1888213a0684 (diff) | |
parent | a748c28b734feb101604326635096fad083ea7fd (diff) | |
download | gitlab-ce-fec66bf7a163e14980f11d2f0370ce9c3630862b.tar.gz |
Merge branch 'fix/doc/39935-missing-fields-in-merge-request-payload' into 'master'
Fix issue 39935 : Add created_at and updated_at fields in MR payload
Closes #39935
See merge request gitlab-org/gitlab-ce!15274
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/merge_requests.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/api/merge_requests.md b/doc/api/merge_requests.md index 6de460f2778..b2e4b6d0955 100644 --- a/doc/api/merge_requests.md +++ b/doc/api/merge_requests.md @@ -58,6 +58,8 @@ Parameters: "project_id": 3, "title": "test1", "state": "opened", + "created_at": "2017-04-29T08:46:00Z", + "updated_at": "2017-04-29T08:46:00Z", "upvotes": 0, "downvotes": 0, "author": { @@ -170,6 +172,8 @@ Parameters: "project_id": 3, "title": "test1", "state": "opened", + "created_at": "2017-04-29T08:46:00Z", + "updated_at": "2017-04-29T08:46:00Z", "upvotes": 0, "downvotes": 0, "author": { @@ -246,6 +250,8 @@ Parameters: "project_id": 3, "title": "test1", "state": "merged", + "created_at": "2017-04-29T08:46:00Z", + "updated_at": "2017-04-29T08:46:00Z", "upvotes": 0, "downvotes": 0, "author": { |