mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-21 04:05:45 +08:00
新增: 创建分支接口
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
json.name branch
|
||||
json.http_url render_http_url(@project)
|
||||
json.zip_url render_zip_url(@owner, @project.repository, branch)
|
||||
json.tar_url render_tar_url(@owner, @project.repository, branch)
|
||||
@@ -0,0 +1,23 @@
|
||||
json.name branch['name']
|
||||
json.commit do
|
||||
json.id branch['commit']['id']
|
||||
json.message branch['commit']['message']
|
||||
json.author do
|
||||
|
||||
json.partial! 'api/v1/users/commit_user', locals: { user: render_cache_commit_author(branch['commit']['author']), name: branch['commit']['author']['name'] }
|
||||
end
|
||||
|
||||
json.committer do
|
||||
json.partial! 'api/v1/users/commit_user', locals: { user: render_cache_commit_author(branch['commit']['committer']), name: branch['commit']['committer']['name'] }
|
||||
end
|
||||
json.time_ago time_from_now(branch['commit']['timestamp'].to_time)
|
||||
json.timestamp branch['commit']['timestamp']
|
||||
end
|
||||
|
||||
json.protected branch['protected']
|
||||
json.user_can_push branch['user_can_push']
|
||||
json.user_can_merge branch['user_can_merge']
|
||||
json.commit_id branch['commit_id']
|
||||
json.commit_time_from_now branch['commit_time']
|
||||
json.commit_time branch['commit_time']
|
||||
json.default_branch branch['default_branch']
|
||||
3
app/views/api/v1/projects/branches/all.json.jbuilder
Normal file
3
app/views/api/v1/projects/branches/all.json.jbuilder
Normal file
@@ -0,0 +1,3 @@
|
||||
json.array! @result_object["branch_name"] do |branch|
|
||||
json.partial! "api/v1/projects/branches/simple_detail", branch: branch
|
||||
end
|
||||
1
app/views/api/v1/projects/branches/create.json.jbuilder
Normal file
1
app/views/api/v1/projects/branches/create.json.jbuilder
Normal file
@@ -0,0 +1 @@
|
||||
json.partial! "api/v1/projects/branches/simple_gitea_detail", branch: @result_object
|
||||
Reference in New Issue
Block a user