修复:tags detail 无法获取commit_user

This commit is contained in:
yystopf 2023-02-03 18:23:16 +08:00
parent bef1350933
commit 726453ea99
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@ if tag.present? && tag.is_a?(Hash)
json.time_ago time_from_now(tag['commit']['commiter']['date'].to_time) json.time_ago time_from_now(tag['commit']['commiter']['date'].to_time)
json.created_at_unix tag['commit']['commiter']['date'].to_time.to_i json.created_at_unix tag['commit']['commiter']['date'].to_time.to_i
json.committer do json.committer do
json.partial! 'commit_author', user: render_cache_commit_author(tag['commit']['commiter']), name: tag['commit']['commiter']['name'] json.partial! 'api/v1/users/commit_user', user: render_cache_commit_author(tag['commit']['commiter']), name: tag['commit']['commiter']['name']
end end
json.author do json.author do
json.partial! 'commit_author', user: render_cache_commit_author(tag['commit']['author']), name: tag['commit']['author']['name'] json.partial! 'api/v1/users/commit_user', user: render_cache_commit_author(tag['commit']['author']), name: tag['commit']['author']['name']
end end
end end
else else