Skip to content
Snippets Groups Projects
Commit e9c26282 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Check if file exists in metadata in download action

parent 09a4a5af
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -24,9 +24,14 @@ class Projects::ArtifactsController < Projects::ApplicationController
end
 
def file
# TODO, check if file exists in metadata
render json: { repository: build.artifacts_file.path,
path: Base64.encode64(params[:path].to_s) }
file = build.artifacts_metadata_path(params[:path])
if file.exists?
render json: { repository: build.artifacts_file.path,
path: Base64.encode64(file.path) }
else
render json: {}, status: 404
end
end
 
private
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment