]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/user_roles_controller.rb
Fix most auto-correctable rubocop issues
[rails.git] / app / controllers / user_roles_controller.rb
index 8f623a04dff3257d4ba199a1fdc6adb0f73568e7..4316c5e94bef71ae55adaf23364f75124d715dbb 100644 (file)
@@ -15,23 +15,24 @@ class UserRolesController < ApplicationController
   end
 
   def revoke
-    UserRole.delete_all({:user_id => @this_user.id, :role => @role})
+    UserRole.delete_all(:user_id => @this_user.id, :role => @role)
     redirect_to :controller => 'user', :action => 'view', :display_name => @this_user.display_name
   end
 
   private
+
   ##
   # require that the user is an administrator, or fill out a helpful error message
   # and return them to theuser page.
   def require_administrator
     unless @user.administrator?
-      flash[:error] = t'user_role.filter.not_an_administrator'
+      flash[:error] = t 'user_role.filter.not_an_administrator'
       redirect_to :controller => 'user', :action => 'view', :display_name => @this_user.display_name
     end
   end
 
   ##
-  # require that the given role is valid. the role is a URL 
+  # require that the given role is valid. the role is a URL
   # parameter, so should always be present.
   def require_valid_role
     @role = params[:role]