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

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

module Types
  module Boards
    class NegatedBoardIssueInputType < BoardIssueInputBaseType
    end
  end
end

Types::Boards::NegatedBoardIssueInputType.prepend_if_ee('::EE::Types::Boards::NegatedBoardIssueInputType')