summaryrefslogtreecommitdiff
path: root/app/services/files/update_service.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-02-05 11:39:55 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-02-05 11:39:55 +0200
commit55572c4e86c6b4cb12c8984b54de57fc02972ad1 (patch)
treeeb9fb516b0300737bae24dc5119460a5eadd2eb3 /app/services/files/update_service.rb
parentd701d5869516142a4073804622503299202cfbe2 (diff)
downloadgitlab-ce-55572c4e86c6b4cb12c8984b54de57fc02972ad1.tar.gz
Repository#blob_at_branch
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/services/files/update_service.rb')
-rw-r--r--app/services/files/update_service.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb
index 19bd62e1e36..c631f28749c 100644
--- a/app/services/files/update_service.rb
+++ b/app/services/files/update_service.rb
@@ -17,8 +17,7 @@ module Files
return error("You can only create files if you are on top of a branch")
end
- commit = repository.commit(ref)
- blob = repository.blob_at(commit.sha, path)
+ blob = repository.blob_at_branch(ref, path)
unless blob
return error("You can only edit text files")