Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e59674f9
Commit
e59674f9
authored
Jul 01, 2014
by
Christian Taedcke
Committed by
Christian Taedcke
Jul 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add full commit message to commit api as field message.
parent
414afd68
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
CHANGELOG
CHANGELOG
+1
-0
doc/api/commits.md
doc/api/commits.md
+5
-2
lib/api/entities.rb
lib/api/entities.rb
+1
-0
No files found.
CHANGELOG
View file @
e59674f9
v 7.2.0
- Explore page
- Add project stars (Ciro Santilli)
- Expose the full commit message via API
v 7.1.0
- Remove observers
...
...
doc/api/commits.md
View file @
e59674f9
...
...
@@ -21,7 +21,8 @@ Parameters:
"title"
:
"Replace sanitize with escape once"
,
"author_name"
:
"Dmitriy Zaporozhets"
,
"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"
,
...
...
@@ -29,7 +30,8 @@ Parameters:
"title"
:
"Sanitize for network graph"
,
"author_name"
:
"randx"
,
"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_email"
:
"dmitriy.zaporozhets@gmail.com"
,
"created_at"
:
"2012-09-20T09:06:12+03:00"
,
"message"
:
"Sanitize for network graph"
,
"committed_date"
:
"2012-09-20T09:06:12+03:00"
,
"authored_date"
:
"2012-09-20T09:06:12+03:00"
,
"parent_ids"
:
[
...
...
lib/api/entities.rb
View file @
e59674f9
...
...
@@ -102,6 +102,7 @@ module API
class
RepoCommit
<
Grape
::
Entity
expose
:id
,
:short_id
,
:title
,
:author_name
,
:author_email
,
:created_at
expose
:safe_message
,
as: :message
end
class
RepoCommitDetail
<
RepoCommit
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment