summaryrefslogtreecommitdiff
path: root/app/graphql/types/label_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/label_type.rb')
-rw-r--r--app/graphql/types/label_type.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/graphql/types/label_type.rb b/app/graphql/types/label_type.rb
index 3aeda2e7953..384a27df563 100644
--- a/app/graphql/types/label_type.rb
+++ b/app/graphql/types/label_type.rb
@@ -6,10 +6,10 @@ module Types
authorize :read_label
- field :description, GraphQL::STRING_TYPE, null: true
+ field :description, GraphQL::STRING_TYPE, null: true # rubocop:disable Graphql/Descriptions
markdown_field :description_html, null: true
- field :title, GraphQL::STRING_TYPE, null: false
- field :color, GraphQL::STRING_TYPE, null: false
- field :text_color, GraphQL::STRING_TYPE, null: false
+ field :title, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
+ field :color, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
+ field :text_color, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
end
end