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

issue_connection_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e0f05f741e4053107f03947b18b7d1b876a0063 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class IssueConnectionType < CountableConnectionType
  end
end

Types::IssueConnectionType.prepend_if_ee('::EE::Types::IssueConnectionType')