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 ...@@ -405,7 +405,6 @@ GEM
mail_room (0.8.0) mail_room (0.8.0)
method_source (0.8.2) method_source (0.8.2)
mime-types (2.99.2) mime-types (2.99.2)
mime-types-data (3.2016.0521)
mimemagic (0.3.1) mimemagic (0.3.1)
mini_portile2 (2.1.0) mini_portile2 (2.1.0)
minitest (5.7.0) minitest (5.7.0)
......
...@@ -38,16 +38,16 @@ class Projects::BlobController < Projects::ApplicationController ...@@ -38,16 +38,16 @@ class Projects::BlobController < Projects::ApplicationController
end end
def update def update
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? unless params[:file_name].empty?
@previous_path = @path @previous_path = @path
@path = params[:file_name] @path = params[:file_name]
end 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
namespace_project_blob_path(@project.namespace, @project, File.join(@target_branch, @path)) namespace_project_blob_path(@project.namespace, @project, File.join(@target_branch, @path))
end 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