summaryrefslogtreecommitdiff
path: root/app/helpers/yaml_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/yaml_helper.rb')
-rw-r--r--app/helpers/yaml_helper.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/helpers/yaml_helper.rb b/app/helpers/yaml_helper.rb
deleted file mode 100644
index 17990e1f475..00000000000
--- a/app/helpers/yaml_helper.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-module YamlHelper
- def yaml_web_editor_link(project)
- commits = project.ci_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