提交 1ad6b369 编写于 作者: G Grzegorz Bizon

Expose serialized pipelines for commit pipelines

上级 42e3f0fd
......@@ -30,6 +30,17 @@ class Projects::CommitController < Projects::ApplicationController
end
def pipelines
@pipelines = @commit.pipelines.order(id: :desc)
respond_to do |format|
format.html
format.json do
render json: PipelineSerializer
.new(project: @project, user: @current_user)
.with_pagination(request, response)
.represent(@pipelines)
end
end
end
def branches
......
- page_title "Pipelines", "#{@commit.title} (#{@commit.short_id})", "Commits"
- page_title 'Pipelines', "#{@commit.title} (#{@commit.short_id})", 'Commits'
= render "commit_box"
= render "ci_menu"
= render "pipelines_list", pipelines: @commit.pipelines.order(id: :desc)
= render 'commit_box'
= render 'ci_menu'
= render 'pipelines_list', pipelines: @pipelines
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册