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: 7abb2253fac8a40ab25dff0a2c391d744d273e3b (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_mod_with('Types::IssueConnectionType')