From 55572c4e86c6b4cb12c8984b54de57fc02972ad1 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Wed, 5 Feb 2014 11:39:55 +0200 Subject: Repository#blob_at_branch Signed-off-by: Dmitriy Zaporozhets --- app/services/files/create_service.rb | 3 +-- app/services/files/delete_service.rb | 3 +-- app/services/files/update_service.rb | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) (limited to 'app/services/files') diff --git a/app/services/files/create_service.rb b/app/services/files/create_service.rb index 1876dba0887..1998fb79e7d 100644 --- a/app/services/files/create_service.rb +++ b/app/services/files/create_service.rb @@ -24,8 +24,7 @@ module Files return error("Your changes could not be committed, because file name contains not allowed characters") end - commit = repository.commit(ref) - blob = repository.blob_at(commit.sha, file_path) + blob = repository.blob_at_branch(ref, file_path) if blob return error("Your changes could not be committed, because file with such name exists") diff --git a/app/services/files/delete_service.rb b/app/services/files/delete_service.rb index bacd0ccc5fb..ff5dc6ef34c 100644 --- a/app/services/files/delete_service.rb +++ b/app/services/files/delete_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") 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") -- cgit v1.2.1