Added the missing comma
This commit is contained in:
parent
00dd44455a
commit
a6c6335671
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ module API
|
|||
# branch (required) - The name of the branch
|
||||
# Example Request:
|
||||
# DELETE /projects/:id/repository/branches/:branch
|
||||
delete ":id/repository/branches/:branch"
|
||||
delete ":id/repository/branches/:branch",
|
||||
requirements: { branch: /.*/ } do
|
||||
authorize_push_project
|
||||
result = DeleteBranchService.new(user_project, current_user).
|
||||
|
|
Loading…
Reference in a new issue