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:
authorKamil Trzciński <ayufan@ayufan.eu>2018-12-01 14:39:13 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2019-01-07 11:38:05 +0300
commitc4d615c9dcba6815d0e9d1b7b7de5b7528ac7c72 (patch)
treed5358e8d4dad18f7b92b2dea54b1b1b768e37313 /app/models/blob_viewer
parentb97b85c37e77e5d37705cb2d3a60161896585420 (diff)
Allow to include files from another projects
This adds `project:, file:, ref:` specification support.
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 655241c2808..11228e620c9 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, sha)
+ def validation_message(opts)
return @validation_message if defined?(@validation_message)
prepare!
- @validation_message = Gitlab::Ci::YamlProcessor.validation_message(blob.data, { project: project, sha: sha })
+ @validation_message = Gitlab::Ci::YamlProcessor.validation_message(blob.data, opts)
end
- def valid?(project, sha)
- validation_message(project, sha).blank?
+ def valid?(opts)
+ validation_message(opts).blank?
end
end
end