summaryrefslogtreecommitdiff
path: root/app/graphql/types/user_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/user_type.rb')
-rw-r--r--app/graphql/types/user_type.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/graphql/types/user_type.rb b/app/graphql/types/user_type.rb
index 6b53554314b..9f7d2a171d6 100644
--- a/app/graphql/types/user_type.rb
+++ b/app/graphql/types/user_type.rb
@@ -8,9 +8,9 @@ module Types
present_using UserPresenter
- field :name, GraphQL::STRING_TYPE, null: false
- field :username, GraphQL::STRING_TYPE, null: false
- field :avatar_url, GraphQL::STRING_TYPE, null: false
- field :web_url, GraphQL::STRING_TYPE, null: false
+ field :name, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
+ field :username, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
+ field :avatar_url, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
+ field :web_url, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
end
end