summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci_configuration/sast/entity_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci_configuration/sast/entity_type.rb')
-rw-r--r--app/graphql/types/ci_configuration/sast/entity_type.rb20
1 files changed, 11 insertions, 9 deletions
diff --git a/app/graphql/types/ci_configuration/sast/entity_type.rb b/app/graphql/types/ci_configuration/sast/entity_type.rb
index 41b8575d99a..91e80fdd9f8 100644
--- a/app/graphql/types/ci_configuration/sast/entity_type.rb
+++ b/app/graphql/types/ci_configuration/sast/entity_type.rb
@@ -9,28 +9,30 @@ module Types
description 'Represents an entity in SAST CI configuration'
field :field, GraphQL::Types::String, null: true,
- description: 'CI keyword of entity.'
+ description: 'CI keyword of entity.'
field :label, GraphQL::Types::String, null: true,
- description: 'Label for entity used in the form.'
+ description: 'Label for entity used in the form.'
field :type, GraphQL::Types::String, null: true,
- description: 'Type of the field value.'
+ description: 'Type of the field value.'
- field :options, ::Types::CiConfiguration::Sast::OptionsEntityType.connection_type, null: true,
- description: 'Different possible values of the field.'
+ field :options,
+ ::Types::CiConfiguration::Sast::OptionsEntityType.connection_type,
+ null: true,
+ description: 'Different possible values of the field.'
field :default_value, GraphQL::Types::String, null: true,
- description: 'Default value that is used if value is empty.'
+ description: 'Default value that is used if value is empty.'
field :description, GraphQL::Types::String, null: true,
- description: 'Entity description that is displayed on the form.'
+ description: 'Entity description that is displayed on the form.'
field :value, GraphQL::Types::String, null: true,
- description: 'Current value of the entity.'
+ description: 'Current value of the entity.'
field :size, ::Types::CiConfiguration::Sast::UiComponentSizeEnum, null: true,
- description: 'Size of the UI component.'
+ description: 'Size of the UI component.'
end
end
end