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

renewed_event.rb « gitlab_subscriptions « events « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02bf8ec7095a0f6bf101786ce04d4389814e5ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module GitlabSubscriptions
  class RenewedEvent < Gitlab::EventStore::Event
    def schema
      {
        'type' => 'object',
        'required' => %w[
          namespace_id
        ],
        'properties' => {
          'namespace_id' => { 'type' => 'integer' }
        }
      }
    end
  end
end