mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
新增:历史记录分页
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
class Reposync::GetLogsService < Reposync::ClientService
|
||||
|
||||
attr_accessor :repo_name, :branch_id
|
||||
attr_accessor :repo_name, :branch_id, :page_num, :page_size
|
||||
|
||||
def initialize(repo_name, branch_id=nil)
|
||||
def initialize(repo_name=nil, branch_id=nil, page_num=1, page_size=10)
|
||||
@repo_name = repo_name
|
||||
@branch_id = branch_id
|
||||
@page_num = page_num
|
||||
@page_size = page_size
|
||||
end
|
||||
|
||||
def call
|
||||
@@ -14,10 +16,18 @@ class Reposync::GetLogsService < Reposync::ClientService
|
||||
|
||||
private
|
||||
def request_params
|
||||
branch_id.present? ? {branch_id: branch_id}.stringify_keys : {}
|
||||
params = {
|
||||
page_num: page_num,
|
||||
page_size: page_size,
|
||||
create_sort: true
|
||||
}
|
||||
params.merge(repo_name: repo_name) if repo_name.present?
|
||||
params.merge(branch_id: branch_id) if branch_id.present?
|
||||
|
||||
return params.stringify_keys
|
||||
end
|
||||
|
||||
def url
|
||||
"/cerobot/sync/repo/#{repo_name}/logs"
|
||||
"/cerobot/sync/repo/logs"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user