Add full commit message to commit api as field message.

This commit is contained in:
Christian Taedcke 2014-07-01 21:05:29 +02:00 committed by Christian Taedcke
parent 414afd68f3
commit e59674f954
3 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,7 @@
v 7.2.0 v 7.2.0
- Explore page - Explore page
- Add project stars (Ciro Santilli) - Add project stars (Ciro Santilli)
- Expose the full commit message via API
v 7.1.0 v 7.1.0
- Remove observers - Remove observers

View File

@ -21,7 +21,8 @@ Parameters:
"title": "Replace sanitize with escape once", "title": "Replace sanitize with escape once",
"author_name": "Dmitriy Zaporozhets", "author_name": "Dmitriy Zaporozhets",
"author_email": "dzaporozhets@sphereconsultinginc.com", "author_email": "dzaporozhets@sphereconsultinginc.com",
"created_at": "2012-09-20T11:50:22+03:00" "created_at": "2012-09-20T11:50:22+03:00",
"message": "Replace sanitize with escape once"
}, },
{ {
"id": "6104942438c14ec7bd21c6cd5bd995272b3faff6", "id": "6104942438c14ec7bd21c6cd5bd995272b3faff6",
@ -29,7 +30,8 @@ Parameters:
"title": "Sanitize for network graph", "title": "Sanitize for network graph",
"author_name": "randx", "author_name": "randx",
"author_email": "dmitriy.zaporozhets@gmail.com", "author_email": "dmitriy.zaporozhets@gmail.com",
"created_at": "2012-09-20T09:06:12+03:00" "created_at": "2012-09-20T09:06:12+03:00",
"message": "Sanitize for network graph"
} }
] ]
``` ```
@ -55,6 +57,7 @@ Parameters:
"author_name": "randx", "author_name": "randx",
"author_email": "dmitriy.zaporozhets@gmail.com", "author_email": "dmitriy.zaporozhets@gmail.com",
"created_at": "2012-09-20T09:06:12+03:00", "created_at": "2012-09-20T09:06:12+03:00",
"message": "Sanitize for network graph",
"committed_date": "2012-09-20T09:06:12+03:00", "committed_date": "2012-09-20T09:06:12+03:00",
"authored_date": "2012-09-20T09:06:12+03:00", "authored_date": "2012-09-20T09:06:12+03:00",
"parent_ids": [ "parent_ids": [

View File

@ -102,6 +102,7 @@ module API
class RepoCommit < Grape::Entity class RepoCommit < Grape::Entity
expose :id, :short_id, :title, :author_name, :author_email, :created_at expose :id, :short_id, :title, :author_name, :author_email, :created_at
expose :safe_message, as: :message
end end
class RepoCommitDetail < RepoCommit class RepoCommitDetail < RepoCommit