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

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

module Types
  module DeprecatedMutations
    extend ActiveSupport::Concern

    prepended do
      # placeholder for any FOSS mutations to be deprecated
    end
  end
end