summaryrefslogtreecommitdiff
path: root/app/graphql/types/issue_connection_type.rb
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')