summaryrefslogtreecommitdiff
path: root/app/helpers/builds_helper.rb
blob: 1b5a2c31d74660e4fb01931bf5b4aa0135affd23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module BuildsHelper
  def build_ref_link build
    gitlab_ref_link build.project, build.ref
  end

  def build_commit_link build
    gitlab_commit_link build.project, build.short_sha
  end

  def build_url(build)
    namespace_project_build_path(build.gl_project, build.project, build)
  end
end