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:
Diffstat (limited to 'rubocop/cop/user_admin.rb')
-rw-r--r--rubocop/cop/user_admin.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/user_admin.rb b/rubocop/cop/user_admin.rb
index 3ba0e770ec1..643e620666b 100644
--- a/rubocop/cop/user_admin.rb
+++ b/rubocop/cop/user_admin.rb
@@ -3,7 +3,7 @@
module RuboCop
module Cop
# Cop that rejects the usage of `User#admin?`
- class UserAdmin < RuboCop::Cop::Cop
+ class UserAdmin < RuboCop::Cop::Base
MSG = 'Direct calls to `User#admin?` to determine admin status should be ' \
'avoided as they will not take into account the policies framework ' \
'and will ignore Admin Mode if enabled. Please use a policy check ' \
@@ -26,7 +26,7 @@ module RuboCop
def on_handler(node)
return unless admin_call?(node)
- add_offense(node, location: :selector)
+ add_offense(node.loc.selector)
end
end
end