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

task_completion_status.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0aa8fc60a7c0795eb749e82222bfc32a8ed8cd8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  # This is used in `IssueType` and `MergeRequestType` both of which have their
  # own authorization
  class TaskCompletionStatus < BaseObject
    graphql_name 'TaskCompletionStatus'
    description 'Completion status of tasks'

    field :count, GraphQL::INT_TYPE, null: false # rubocop:disable Graphql/Descriptions
    field :completed_count, GraphQL::INT_TYPE, null: false # rubocop:disable Graphql/Descriptions
  end
  # rubocop: enable Graphql/AuthorizeTypes
end