14 lines
296 B
Ruby
14 lines
296 B
Ruby
|
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
|