summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/runner_architecture_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci/runner_architecture_type.rb')
-rw-r--r--app/graphql/types/ci/runner_architecture_type.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/graphql/types/ci/runner_architecture_type.rb b/app/graphql/types/ci/runner_architecture_type.rb
index eb576cf09ce..8b0558fc6a6 100644
--- a/app/graphql/types/ci/runner_architecture_type.rb
+++ b/app/graphql/types/ci/runner_architecture_type.rb
@@ -6,10 +6,12 @@ module Types
class RunnerArchitectureType < BaseObject
graphql_name 'RunnerArchitecture'
- field :download_location, GraphQL::Types::String, null: false,
- description: 'Download location for the runner for the platform architecture.'
+ field :download_location,
+ GraphQL::Types::String,
+ null: false,
+ description: 'Download location for the runner for the platform architecture.'
field :name, GraphQL::Types::String, null: false,
- description: 'Name of the runner platform architecture.'
+ description: 'Name of the runner platform architecture.'
end
end
end