summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortiagonbotelho <tiagonbotelho@hotmail.com>2016-07-01 16:32:56 +0100
committertiagonbotelho <tiagonbotelho@hotmail.com>2016-07-04 16:43:07 +0100
commit85d1a9708ea31084147911243be248a02e89c56a (patch)
tree86fed486d83d3e103b61f11fc3297f08217f7390
parent1a36493d134328fa5b9ac3d3a04e43e72bdf67bb (diff)
downloadgitlab-ce-85d1a9708ea31084147911243be248a02e89c56a.tar.gz
implements the form for renaming the new filename on the file edit page
-rw-r--r--app/controllers/projects/blob_controller.rb3
-rw-r--r--app/services/files/update_service.rb1
-rw-r--r--app/views/projects/blob/_editor.html.haml6
3 files changed, 8 insertions, 2 deletions
diff --git a/app/controllers/projects/blob_controller.rb b/app/controllers/projects/blob_controller.rb
index 7599fec3cdf..4c42be7d710 100644
--- a/app/controllers/projects/blob_controller.rb
+++ b/app/controllers/projects/blob_controller.rb
@@ -43,7 +43,8 @@ class Projects::BlobController < Projects::ApplicationController
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))
+ # params[:file_name] stores the new name for the file
+ namespace_project_blob_path(@project.namespace, @project, File.join(@target_branch, params[:file_name]))
end
create_commit(Files::UpdateService, success_path: after_edit_path,
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb
index 1960dc7d949..52451d72b57 100644
--- a/app/services/files/update_service.rb
+++ b/app/services/files/update_service.rb
@@ -3,6 +3,7 @@ require_relative "base_service"
module Files
class UpdateService < Files::BaseService
def commit
+ # Need to update file_path with the new filename
repository.commit_file(current_user, @file_path, @file_content, @commit_message, @target_branch, true)
end
end
diff --git a/app/views/projects/blob/_editor.html.haml b/app/views/projects/blob/_editor.html.haml
index 29c7d45074a..3c64b2f5e96 100644
--- a/app/views/projects/blob/_editor.html.haml
+++ b/app/views/projects/blob/_editor.html.haml
@@ -4,7 +4,11 @@
= icon('code-fork')
= ref
%span.editor-file-name
- = @path
+ - if current_action?(:edit) && can?(current_user, :push_code, @project)
+ = text_field_tag 'file_name', params[:file_name], placeholder: @path,
+ class: 'form-control new-file-name'
+ - else
+ = @path
- if current_action?(:new) || current_action?(:create)
%span.editor-file-name