summaryrefslogtreecommitdiff
path: root/lib/api/v3/tags.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/v3/tags.rb')
-rw-r--r--lib/api/v3/tags.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/v3/tags.rb b/lib/api/v3/tags.rb
index c2541de2f50..7e5875cd030 100644
--- a/lib/api/v3/tags.rb
+++ b/lib/api/v3/tags.rb
@@ -22,8 +22,8 @@ module API
delete ":id/repository/tags/:tag_name", requirements: { tag_name: /.+/ } do
authorize_push_project
- result = ::Tags::DestroyService.new(user_project, current_user).
- execute(params[:tag_name])
+ result = ::Tags::DestroyService.new(user_project, current_user)
+ .execute(params[:tag_name])
if result[:status] == :success
status(200)