mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 13:45:44 +08:00
rake commit_log_to_db 用户不存在
This commit is contained in:
@@ -25,9 +25,9 @@ namespace :commit_log_to_db do
|
|||||||
commit_author = "#{commiter['name']} <#{commiter['email']}>"
|
commit_author = "#{commiter['name']} <#{commiter['email']}>"
|
||||||
commit_sha = commit['sha']
|
commit_sha = commit['sha']
|
||||||
ref = "master"
|
ref = "master"
|
||||||
commit_message = commit['commit']['message'].to_s.gsub("/n","")
|
commit_message = commit['commit']['message'].to_s.gsub("\"","")
|
||||||
user = User.find_by(mail: commiter['email'])
|
user = User.find_by(mail: commiter['email'])
|
||||||
user_id = user&.id || 1
|
user_id = user&.id || project.user_id
|
||||||
commit_date = Time.parse(commit['commit']['author']['date'])
|
commit_date = Time.parse(commit['commit']['author']['date'])
|
||||||
commit_date_str = commit_date.strftime("%a %b %d %H:%M:%S")
|
commit_date_str = commit_date.strftime("%a %b %d %H:%M:%S")
|
||||||
|
|
||||||
@@ -60,9 +60,9 @@ namespace :commit_log_to_db do
|
|||||||
commit_author = "#{commiter['name']} <#{commiter['email']}>"
|
commit_author = "#{commiter['name']} <#{commiter['email']}>"
|
||||||
commit_sha = commit['sha']
|
commit_sha = commit['sha']
|
||||||
ref = "master"
|
ref = "master"
|
||||||
commit_message = commit['commit']['message'].to_s.gsub("/n","")
|
commit_message = commit['commit']['message'].to_s.gsub("/n","").gsub("\"","")
|
||||||
user = User.find_by(mail: commiter['email'])
|
user = User.find_by(mail: commiter['email'])
|
||||||
user_id = user&.id || 1
|
user_id = user&.id || project.user_id
|
||||||
commit_date = Time.parse(commit['commit']['author']['date'])
|
commit_date = Time.parse(commit['commit']['author']['date'])
|
||||||
commit_date_str = commit_date.strftime("%Y-%m-%d %H:%M:%S")
|
commit_date_str = commit_date.strftime("%Y-%m-%d %H:%M:%S")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user