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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-11-05 21:08:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-11-05 21:08:34 +0300
commit2baa63e740214382387abe77eeea6c0b1759e621 (patch)
tree802d3d0c8622fae149053ab8b8acbce99554d35c /app/serializers/job_artifact_report_entity.rb
parent4c464055fbcdab02bb8334b148c0e35b981b239e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/serializers/job_artifact_report_entity.rb')
-rw-r--r--app/serializers/job_artifact_report_entity.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/serializers/job_artifact_report_entity.rb b/app/serializers/job_artifact_report_entity.rb
index 4280351a6b0..bdab8f64785 100644
--- a/app/serializers/job_artifact_report_entity.rb
+++ b/app/serializers/job_artifact_report_entity.rb
@@ -8,6 +8,6 @@ class JobArtifactReportEntity < Grape::Entity
expose :size
expose :download_path do |artifact|
- download_project_job_artifacts_path(artifact.job.project, artifact.job, file_type: artifact.file_format)
+ download_project_job_artifacts_path(artifact.job.project, artifact.job, file_type: artifact.file_type)
end
end