Commit e7832d01 authored by tiagonbotelho's avatar tiagonbotelho

refactors to pass values as arguments through options

parent 2313b09b
...@@ -734,42 +734,25 @@ class Repository ...@@ -734,42 +734,25 @@ class Repository
def update_file(user, path, content, branch:, previous_path:, message:) def update_file(user, path, content, branch:, previous_path:, message:)
commit_with_hooks(user, branch) do |ref| commit_with_hooks(user, branch) do |ref|
committer = user_to_committer(user) committer = user_to_committer(user)
options = {} commit_options = {}
options[:committer] = committer commit_options[:committer] = committer
options[:author] = committer commit_options[:author] = committer
options[:commit] = { commit_options[:commit] = {
message: message, message: options[:message],
<<<<<<< 3824e8e1c4315bb3d1b2c1389f442d3b5e94f945
branch: ref branch: ref
} }
======= commit_options[:file] = {
branch: ref,
}
if previous_path
options[:file] = {
path: previous_path
}
Gitlab::Git::Blob.remove(raw_repository, options)
end
>>>>>>> creates the update_file method in repository.rb and applies changes accordingly
options[:file] = {
content: content, content: content,
path: path, path: path,
update: true update: true
} }
<<<<<<< 3824e8e1c4315bb3d1b2c1389f442d3b5e94f945
if previous_path if previous_path
options[:file][:previous_path] = previous_path options[:file][:previous_path] = previous_path
Gitlab::Git::Blob.rename(raw_repository, commit_options)
Gitlab::Git::Blob.rename(raw_repository, options)
else else
Gitlab::Git::Blob.commit(raw_repository, options) Gitlab::Git::Blob.commit(raw_repository, commit_options)
end end
end end
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