17 lines
379 B
Ruby
17 lines
379 B
Ruby
module Ci
|
|
module GitlabHelper
|
|
def no_turbolink
|
|
{ :"data-no-turbolink" => "data-no-turbolink" }
|
|
end
|
|
|
|
def yaml_web_editor_link(project)
|
|
commits = project.commits
|
|
|
|
if commits.any? && commits.last.ci_yaml_file
|
|
"#{project.gitlab_url}/edit/master/.gitlab-ci.yml"
|
|
else
|
|
"#{project.gitlab_url}/new/master"
|
|
end
|
|
end
|
|
end
|
|
end
|