summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci_configuration/sast/type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci_configuration/sast/type.rb')
-rw-r--r--app/graphql/types/ci_configuration/sast/type.rb18
1 files changed, 12 insertions, 6 deletions
diff --git a/app/graphql/types/ci_configuration/sast/type.rb b/app/graphql/types/ci_configuration/sast/type.rb
index 35d11584ac7..edfdf296929 100644
--- a/app/graphql/types/ci_configuration/sast/type.rb
+++ b/app/graphql/types/ci_configuration/sast/type.rb
@@ -8,14 +8,20 @@ module Types
graphql_name 'SastCiConfiguration'
description 'Represents a CI configuration of SAST'
- field :global, ::Types::CiConfiguration::Sast::EntityType.connection_type, null: true,
- description: 'List of global entities related to SAST configuration.'
+ field :global,
+ ::Types::CiConfiguration::Sast::EntityType.connection_type,
+ null: true,
+ description: 'List of global entities related to SAST configuration.'
- field :pipeline, ::Types::CiConfiguration::Sast::EntityType.connection_type, null: true,
- description: 'List of pipeline entities related to SAST configuration.'
+ field :pipeline,
+ ::Types::CiConfiguration::Sast::EntityType.connection_type,
+ null: true,
+ description: 'List of pipeline entities related to SAST configuration.'
- field :analyzers, ::Types::CiConfiguration::Sast::AnalyzersEntityType.connection_type, null: true,
- description: 'List of analyzers entities attached to SAST configuration.'
+ field :analyzers,
+ ::Types::CiConfiguration::Sast::AnalyzersEntityType.connection_type,
+ null: true,
+ description: 'List of analyzers entities attached to SAST configuration.'
end
end
end