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:
authorDan Tudor <dtudor01@gmail.com>2015-03-25 18:15:26 +0300
committerDan Tudor <dtudor01@gmail.com>2015-03-25 18:15:26 +0300
commit00dd44455a499050cd225990ed3fb9954f333b4d (patch)
tree4a8ed86802f9a6997ffd1589233a481309c154dd /lib/api/branches.rb
parentd554070a62b0bc34ab2289d4a071b950df4d5485 (diff)
Allow ability to delete branches with '/` in name
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 edfdf842f85..431d52a98ea 100644
--- a/lib/api/branches.rb
+++ b/lib/api/branches.rb
@@ -1,5 +1,4 @@
require 'mime/types'
-require 'uri'
module API
# Projects API
@@ -101,10 +100,11 @@ module API
# branch (required) - The name of the branch
# Example Request:
# DELETE /projects/:id/repository/branches/:branch
- delete ":id/repository/branches/:branch" do
+ delete ":id/repository/branches/:branch"
+ requirements: { branch: /.*/ } do
authorize_push_project
result = DeleteBranchService.new(user_project, current_user).
- execute(URI.unescape(params[:branch]))
+ execute(params[:branch])
if result[:status] == :success
{