]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/user_blocks_controller.rb
Fix rubocop Style/SoleNestedConditional warnings
[rails.git] / app / controllers / user_blocks_controller.rb
index 5e0a7ee708f532d4d98b0e97ea32f425c8bd1587..058c442d50999aef995831cc9598bb9e8906c8b9 100644 (file)
@@ -79,11 +79,9 @@ class UserBlocksController < ApplicationController
   ##
   # revokes the block, setting the end_time to now
   def revoke
-    if params[:confirm]
-      if @user_block.revoke! current_user
-        flash[:notice] = t ".flash"
-        redirect_to(@user_block)
-      end
+    if params[:confirm] && @user_block.revoke!(current_user)
+      flash[:notice] = t ".flash"
+      redirect_to(@user_block)
     end
   end