|
|
|
@@ -113,14 +113,8 @@ class Api::V1::Projects::SyncRepositoriesController < Api::V1::BaseController |
|
|
|
|
|
|
|
def history |
|
|
|
return render_error("请输入正确的同步分支ID") unless params[:reposync_branch_ids] |
|
|
|
@reposync_branch_logs = [] |
|
|
|
params[:reposync_branch_ids].split(",").each do |branch_id| |
|
|
|
@branch = SyncRepositoryBranch.find_by(reposync_branch_id: branch_id) |
|
|
|
repo = @branch&.sync_repository |
|
|
|
_, logs, _ = Reposync::GetLogsService.call(repo&.repo_name, branch_id) |
|
|
|
@reposync_branch_logs += logs |
|
|
|
end |
|
|
|
@reposync_branch_logs = @reposync_branch_logs.sort_by{|log|log["update_at"]} |
|
|
|
@branch = SyncRepositoryBranch.find_by(reposync_branch_id: params[:reposync_branch_ids].split(",")[0]) |
|
|
|
_, @reposync_branch_logs, _ = Reposync::GetLogsService.call(nil, params[:reposync_branch_ids], page, limit) |
|
|
|
end |
|
|
|
|
|
|
|
private |
|
|
|
|