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-05 11:46:48 +0300
committertiagonbotelho <tiagonbotelho@hotmail.com>2016-07-12 17:34:44 +0300
commit71bab5fe58e6b408c67ea681cba371459ae40e7b (patch)
treedafda2eed2662a9a5f1ff01aa6fd99c7e7eeac79 /app/services/files
parente621fb57c4c40bc05cfc2c88a1a7b2493cafc2f4 (diff)
removes debugging prints from code
Diffstat (limited to 'app/services/files')
-rw-r--r--app/services/files/update_service.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb
index fefa1d4ef68..41add13af50 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
+
repository.update_file(current_user, @file_path, @previous_path, @file_content, @commit_message, @target_branch, true)
end
end