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:
authortiagonbotelho <tiagonbotelho@hotmail.com>2016-07-01 18:32:56 +0300
committertiagonbotelho <tiagonbotelho@hotmail.com>2016-07-12 17:25:03 +0300
commitba8f8f2269fbad6f3480a40f350fc269140db583 (patch)
tree6dea0a7b6d6a341f4cfbcf90c43d0f3f54252b00 /app/services/files
parent9951854648a1dc98bbff016c51cd47e67f240267 (diff)
implements the form for renaming the new filename on the file edit page
Diffstat (limited to 'app/services/files')
-rw-r--r--app/services/files/update_service.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb
index 6d015642b91..fefa1d4ef68 100644
--- a/app/services/files/update_service.rb
+++ b/app/services/files/update_service.rb
@@ -3,7 +3,6 @@ require_relative "base_service"
module Files
class UpdateService < Files::BaseService
def commit
- # Need to update file_path with the new filename
repository.update_file(current_user, @file_path, @previous_path, @file_content, @commit_message, @target_branch, true)
end
end