summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci_configuration/sast
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci_configuration/sast')
-rw-r--r--app/graphql/types/ci_configuration/sast/analyzers_entity_input_type.rb1
-rw-r--r--app/graphql/types/ci_configuration/sast/entity_input_type.rb1
-rw-r--r--app/graphql/types/ci_configuration/sast/input_type.rb2
-rw-r--r--app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb6
4 files changed, 4 insertions, 6 deletions
diff --git a/app/graphql/types/ci_configuration/sast/analyzers_entity_input_type.rb b/app/graphql/types/ci_configuration/sast/analyzers_entity_input_type.rb
index 9835a7ef208..ccb72283cf6 100644
--- a/app/graphql/types/ci_configuration/sast/analyzers_entity_input_type.rb
+++ b/app/graphql/types/ci_configuration/sast/analyzers_entity_input_type.rb
@@ -3,7 +3,6 @@
module Types
module CiConfiguration
module Sast
- # rubocop: disable Graphql/AuthorizeTypes
class AnalyzersEntityInputType < BaseInputObject
graphql_name 'SastCiConfigurationAnalyzersEntityInput'
description 'Represents the analyzers entity in SAST CI configuration'
diff --git a/app/graphql/types/ci_configuration/sast/entity_input_type.rb b/app/graphql/types/ci_configuration/sast/entity_input_type.rb
index 39b3efb3db8..9fce120889b 100644
--- a/app/graphql/types/ci_configuration/sast/entity_input_type.rb
+++ b/app/graphql/types/ci_configuration/sast/entity_input_type.rb
@@ -3,7 +3,6 @@
module Types
module CiConfiguration
module Sast
- # rubocop: disable Graphql/AuthorizeTypes
class EntityInputType < BaseInputObject
graphql_name 'SastCiConfigurationEntityInput'
description 'Represents an entity in SAST CI configuration'
diff --git a/app/graphql/types/ci_configuration/sast/input_type.rb b/app/graphql/types/ci_configuration/sast/input_type.rb
index 615436683f6..a86bdfca4da 100644
--- a/app/graphql/types/ci_configuration/sast/input_type.rb
+++ b/app/graphql/types/ci_configuration/sast/input_type.rb
@@ -3,7 +3,7 @@
module Types
module CiConfiguration
module Sast
- class InputType < BaseInputObject # rubocop:disable Graphql/AuthorizeTypes
+ class InputType < BaseInputObject
graphql_name 'SastCiConfigurationInput'
description 'Represents a CI configuration of SAST'
diff --git a/app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb b/app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb
index 3a208f9d3e4..76d2a314c13 100644
--- a/app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb
+++ b/app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb
@@ -7,9 +7,9 @@ module Types
graphql_name 'SastUiComponentSize'
description 'Size of UI component in SAST configuration page'
- value 'SMALL'
- value 'MEDIUM'
- value 'LARGE'
+ value 'SMALL', description: "The size of UI component in SAST configuration page is small."
+ value 'MEDIUM', description: "The size of UI component in SAST configuration page is medium."
+ value 'LARGE', description: "The size of UI component in SAST configuration page is large."
end
end
end