BigW Consortium Gitlab

Commit 484567e6 by tiagonbotelho

fixes merge request edit bug where it would generate a cloned file and not remove the previous one

parent 6cd8bc57
......@@ -405,7 +405,6 @@ GEM
mail_room (0.8.0)
method_source (0.8.2)
mime-types (2.99.2)
mime-types-data (3.2016.0521)
mimemagic (0.3.1)
mini_portile2 (2.1.0)
minitest (5.7.0)
......
......@@ -38,16 +38,16 @@ class Projects::BlobController < Projects::ApplicationController
end
def update
unless params[:file_name].empty?
@previous_path = @path
@path = params[:file_name]
end
after_edit_path =
if from_merge_request && @target_branch == @ref
diffs_namespace_project_merge_request_path(from_merge_request.target_project.namespace, from_merge_request.target_project, from_merge_request) +
"#file-path-#{hexdigest(@path)}"
else
unless params[:file_name].empty?
@previous_path = @path
@path = params[:file_name]
end
namespace_project_blob_path(@project.namespace, @project, File.join(@target_branch, @path))
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment