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:
Diffstat (limited to 'app/serializers/build_artifact_entity.rb')
-rw-r--r--app/serializers/build_artifact_entity.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/app/serializers/build_artifact_entity.rb b/app/serializers/build_artifact_entity.rb
index 7a030372591..3c2c548d049 100644
--- a/app/serializers/build_artifact_entity.rb
+++ b/app/serializers/build_artifact_entity.rb
@@ -15,17 +15,15 @@ class BuildArtifactEntity < Grape::Entity
expose :path do |artifact|
fast_download_project_job_artifacts_path(
- artifact.project,
+ project,
artifact.job,
file_type: artifact.file_type
)
end
- expose :keep_path, if: -> (*) { artifact.expiring? } do |artifact|
- fast_keep_project_job_artifacts_path(artifact.project, artifact.job)
- end
+ private
- expose :browse_path do |artifact|
- fast_browse_project_job_artifacts_path(artifact.project, artifact.job)
+ def project
+ options[:project] || artifact.project
end
end