Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci/runner_platform_type.rb')
-rw-r--r--app/graphql/types/ci/runner_platform_type.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/graphql/types/ci/runner_platform_type.rb b/app/graphql/types/ci/runner_platform_type.rb
index 3c893615b20..1e481cc08bf 100644
--- a/app/graphql/types/ci/runner_platform_type.rb
+++ b/app/graphql/types/ci/runner_platform_type.rb
@@ -6,12 +6,14 @@ module Types
class RunnerPlatformType < BaseObject
graphql_name 'RunnerPlatform'
- field :architectures, Types::Ci::RunnerArchitectureType.connection_type, null: true,
- description: 'Runner architectures supported for the platform.'
+ field :architectures,
+ Types::Ci::RunnerArchitectureType.connection_type,
+ null: true,
+ description: 'Runner architectures supported for the platform.'
field :human_readable_name, GraphQL::Types::String, null: false,
- description: 'Human readable name of the runner platform.'
+ description: 'Human readable name of the runner platform.'
field :name, GraphQL::Types::String, null: false,
- description: 'Name slug of the runner platform.'
+ description: 'Name slug of the runner platform.'
end
end
end