Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2018-09-07 23:22:52 +0300
committerMatija Čupić <matteeyah@gmail.com>2018-09-07 23:22:52 +0300
commit1e816a972164c515bf99c39bd8880dd23e534c9e (patch)
tree6a149060c78aaf0460ee4a4084fb9c2f729c0b9a /app/models/blob_viewer
parent49598c58ebca5807cc63eb7b17872018c6f48503 (diff)
Address MR suggestions
CE mirror of c4578b951e331fe8c75cd4f948ce74cec6587bad
Diffstat (limited to 'app/models/blob_viewer')
-rw-r--r--app/models/blob_viewer/gitlab_ci_yml.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/models/blob_viewer/gitlab_ci_yml.rb b/app/models/blob_viewer/gitlab_ci_yml.rb
index 54462d01b66..655241c2808 100644
--- a/app/models/blob_viewer/gitlab_ci_yml.rb
+++ b/app/models/blob_viewer/gitlab_ci_yml.rb
@@ -10,16 +10,16 @@ module BlobViewer
self.file_types = %i(gitlab_ci)
self.binary = false
- def validation_message(project, ref)
+ def validation_message(project, sha)
return @validation_message if defined?(@validation_message)
prepare!
- @validation_message = Gitlab::Ci::YamlProcessor.validation_message(blob.data, { project: project, branch_name: ref })
+ @validation_message = Gitlab::Ci::YamlProcessor.validation_message(blob.data, { project: project, sha: sha })
end
- def valid?(project, ref)
- validation_message(project, ref).blank?
+ def valid?(project, sha)
+ validation_message(project, sha).blank?
end
end
end