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:
Diffstat (limited to 'lib/api/branches.rb')
-rw-r--r--lib/api/branches.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/api/branches.rb b/lib/api/branches.rb
index 054242dca4c..ce3ee0d7e61 100644
--- a/lib/api/branches.rb
+++ b/lib/api/branches.rb
@@ -137,7 +137,7 @@ module API
post ':id/repository/branches' do
authorize_push_project
- result = CreateBranchService.new(user_project, current_user)
+ result = ::Branches::CreateService.new(user_project, current_user)
.execute(params[:branch], params[:ref])
if result[:status] == :success
@@ -162,7 +162,7 @@ module API
commit = user_project.repository.commit(branch.dereferenced_target)
destroy_conditionally!(commit, last_updated: commit.authored_date) do
- result = DeleteBranchService.new(user_project, current_user)
+ result = ::Branches::DeleteService.new(user_project, current_user)
.execute(params[:branch])
if result.error?
@@ -173,7 +173,7 @@ module API
desc 'Delete all merged branches'
delete ':id/repository/merged_branches' do
- DeleteMergedBranchesService.new(user_project, current_user).async_execute
+ ::Branches::DeleteMergedService.new(user_project, current_user).async_execute
accepted!
end