diff options
author | Sébastien Le Gall <seb@le-gall.net> | 2017-11-08 10:16:37 +0100 |
---|---|---|
committer | Sébastien Le Gall <seb@le-gall.net> | 2017-11-08 10:16:37 +0100 |
commit | a748c28b734feb101604326635096fad083ea7fd (patch) | |
tree | b9198ede51f2d6ea3439eb8d881872db0cc93e70 /doc | |
parent | 3f35ba769a6db924b82939b996fdd7631ddf2377 (diff) | |
download | gitlab-ce-a748c28b734feb101604326635096fad083ea7fd.tar.gz |
Fix issue 39935 : Add created_at and updated_at
Add those fields to the documentation payload about merge requests that were missing but actually present when calling the endpoints
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": { |