2015-09-29 10:26:40 -04:00
|
|
|
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)
|
2015-10-06 15:41:37 -04:00
|
|
|
namespace_project_build_path(build.gl_project, build.project, build)
|
2015-09-29 10:26:40 -04:00
|
|
|
end
|
|
|
|
end
|