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/detailed_status_type.rb')
-rw-r--r--app/graphql/types/ci/detailed_status_type.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/graphql/types/ci/detailed_status_type.rb b/app/graphql/types/ci/detailed_status_type.rb
index 6310a62a103..4433e921971 100644
--- a/app/graphql/types/ci/detailed_status_type.rb
+++ b/app/graphql/types/ci/detailed_status_type.rb
@@ -6,26 +6,26 @@ module Types
class DetailedStatusType < BaseObject
graphql_name 'DetailedStatus'
- field :id, GraphQL::STRING_TYPE, null: false,
+ field :id, GraphQL::Types::String, null: false,
description: 'ID for a detailed status.',
extras: [:parent]
- field :group, GraphQL::STRING_TYPE, null: true,
+ field :group, GraphQL::Types::String, null: true,
description: 'Group of the status.'
- field :icon, GraphQL::STRING_TYPE, null: true,
+ field :icon, GraphQL::Types::String, null: true,
description: 'Icon of the status.'
- field :favicon, GraphQL::STRING_TYPE, null: true,
+ field :favicon, GraphQL::Types::String, null: true,
description: 'Favicon of the status.'
- field :details_path, GraphQL::STRING_TYPE, null: true,
+ field :details_path, GraphQL::Types::String, null: true,
description: 'Path of the details for the status.'
- field :has_details, GraphQL::BOOLEAN_TYPE, null: true,
+ field :has_details, GraphQL::Types::Boolean, null: true,
description: 'Indicates if the status has further details.',
method: :has_details?
- field :label, GraphQL::STRING_TYPE, null: true,
+ field :label, GraphQL::Types::String, null: true,
calls_gitaly: true,
description: 'Label of the status.'
- field :text, GraphQL::STRING_TYPE, null: true,
+ field :text, GraphQL::Types::String, null: true,
description: 'Text of the status.'
- field :tooltip, GraphQL::STRING_TYPE, null: true,
+ field :tooltip, GraphQL::Types::String, null: true,
description: 'Tooltip associated with the status.',
method: :status_tooltip
field :action, Types::Ci::StatusActionType, null: true,