summaryrefslogtreecommitdiff
path: root/doc/api/commits.md
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-02-15 16:24:37 +0000
committerRémy Coutable <remy@rymai.me>2017-02-15 16:24:37 +0000
commitf3de1c579e1d2993c61809dd94864a75a2aa4f94 (patch)
tree27f39f4a8786256169c4fc0c7a69ca98d52a6b77 /doc/api/commits.md
parentaf1c217f9b6dea2afccd7ac2ee89e5b7cef2a8dd (diff)
parent309aee45b69888f9b51aaa0ce393a3f13b08c255 (diff)
downloadgitlab-ce-f3de1c579e1d2993c61809dd94864a75a2aa4f94.tar.gz
Merge branch 'add-missing-api-entities' into 'master'
Add missing api entities Closes #23895 See merge request !7138
Diffstat (limited to 'doc/api/commits.md')
-rw-r--r--doc/api/commits.md18
1 files changed, 15 insertions, 3 deletions
diff --git a/doc/api/commits.md b/doc/api/commits.md
index ef2400aaf3c..3223b82f60a 100644
--- a/doc/api/commits.md
+++ b/doc/api/commits.md
@@ -29,11 +29,15 @@ Example response:
"title": "Replace sanitize with escape once",
"author_name": "Dmitriy Zaporozhets",
"author_email": "dzaporozhets@sphereconsultinginc.com",
+ "authored_date": "2012-09-20T11:50:22+03:00",
"committer_name": "Administrator",
"committer_email": "admin@example.com",
+ "committed_date": "2012-09-20T11:50:22+03:00",
"created_at": "2012-09-20T11:50:22+03:00",
"message": "Replace sanitize with escape once",
- "allow_failure": false
+ "parent_ids": [
+ "6104942438c14ec7bd21c6cd5bd995272b3faff6"
+ ]
},
{
"id": "6104942438c14ec7bd21c6cd5bd995272b3faff6",
@@ -45,7 +49,9 @@ Example response:
"committer_email": "dmitriy.zaporozhets@gmail.com",
"created_at": "2012-09-20T09:06:12+03:00",
"message": "Sanitize for network graph",
- "allow_failure": false
+ "parent_ids": [
+ "ae1d9fb46aa2b07ee9836d49862ec4e2c46fbbba"
+ ]
}
]
```
@@ -214,10 +220,16 @@ Example response:
"title": "Feature added",
"author_name": "Dmitriy Zaporozhets",
"author_email": "dmitriy.zaporozhets@gmail.com",
+ "authored_date": "2016-12-12T20:10:39.000+01:00",
"created_at": "2016-12-12T20:10:39.000+01:00",
"committer_name": "Administrator",
"committer_email": "admin@example.com",
- "message": "Feature added\n\nSigned-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>\n"
+ "committed_date": "2016-12-12T20:10:39.000+01:00",
+ "title": "Feature added",
+ "message": "Feature added\n\nSigned-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>\n",
+ "parent_ids": [
+ "a738f717824ff53aebad8b090c1b79a14f2bd9e8"
+ ]
}
```