gitlab-org--gitlab-foss/app/helpers/ci/gitlab_helper.rb

18 lines
379 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
module Ci
module GitlabHelper
def no_turbolink
{ :"data-no-turbolink" => "data-no-turbolink" }
end
def yaml_web_editor_link(project)
commits = project.commits
2015-10-02 07:46:38 -04:00
if commits.any? && commits.last.ci_yaml_file
"#{project.gitlab_url}/edit/master/.gitlab-ci.yml"
2015-08-25 21:42:46 -04:00
else
"#{project.gitlab_url}/new/master"
2015-08-25 21:42:46 -04:00
end
end
end
end