修改commit返回的用户

This commit is contained in:
sylor_huang@126.com
2020-06-02 15:57:06 +08:00
parent d1089a4a4b
commit f54c374c78
3 changed files with 11 additions and 2 deletions

View File

@@ -5,11 +5,19 @@ else
json.total_count @hash_commit[:total_count]
json.commits do
json.array! @hash_commit[:body] do |commit|
commit_user = commit['committer']['name']
if commit_user
forge_user = User.simple_select.find_by(login: commit_user)
end
json.sha commit['sha']
json.message commit['commit']['message']
json.timestamp render_unix_time(commit['commit']['author']['date'])
json.time_from_now time_from_now(commit['commit']['author']['date'])
json.partial! 'author', user: @project_owner
if forge_user
json.partial! 'author', user: forge_user
else
json.author nil
end
end
end
end