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

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

module Subscriptions
  module Notes
    class Updated < Base
      payload_type Types::Notes::NoteType
    end
  end
end