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

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

module Mutations
  module MergeRequests
    class SetSubscription < Base
      graphql_name 'MergeRequestSetSubscription'

      include ResolvesSubscription
    end
  end
end