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/graphql/authorize_types.rb')
-rw-r--r--rubocop/cop/graphql/authorize_types.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/graphql/authorize_types.rb b/rubocop/cop/graphql/authorize_types.rb
index c96919343d6..7bd2cd9f7ef 100644
--- a/rubocop/cop/graphql/authorize_types.rb
+++ b/rubocop/cop/graphql/authorize_types.rb
@@ -3,7 +3,7 @@
module RuboCop
module Cop
module Graphql
- class AuthorizeTypes < RuboCop::Cop::Cop
+ class AuthorizeTypes < RuboCop::Cop::Base
MSG = 'Add an `authorize :ability` call to the type: '\
'https://docs.gitlab.com/ee/development/graphql_guide/authorization.html#type-authorization'
@@ -19,7 +19,7 @@ module RuboCop
return if allowed?(class_constant(node))
return if allowed?(superclass_constant(node))
- add_offense(node, location: :expression) unless authorize?(node)
+ add_offense(node) unless authorize?(node)
end
private